Skip to content

Commit b145f15

Browse files
author
ajburnle
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into azuread-elm-apexpirationupdate
2 parents 6b8e219 + cb7f402 commit b145f15

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/synapse-analytics/get-started-analyze-sql-on-demand.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ However, as you continue data exploration, you might want to create some utility
5353
- Database users with the permissions to access some data sources or database objects.
5454
- Utility views, procedures, and functions that you can use in the queries.
5555
56-
1. Create a separate database to use these objects. Custom database objects, cannot be created in the `master` database.
56+
1. Use the `master` database to create a separate database for custom database objects. Custom database objects, cannot be created in the `master` database.
5757
5858
```sql
5959
CREATE DATABASE DataExplorationDB
@@ -72,15 +72,15 @@ However, as you continue data exploration, you might want to create some utility
7272
```
7373
7474
> [!NOTE]
75-
> An external data source can be created without credential. In that case, the caller's identity will be used to acces external data source.
75+
> An external data source can be created without a credential. If a credential does not exist, the caller's identity will be used to access the external data source.
7676

77-
3. Optionally, create a login for a user in `DataExplorationDB` that will access external data:
77+
3. Optionally, use the 'master' database to create a login for a user in `DataExplorationDB` that will access external data:
7878

7979
```sql
8080
CREATE LOGIN data_explorer WITH PASSWORD = 'My Very Strong Password 1234!';
8181
```
8282

83-
Create a database user in `DataExplorationDB` for the login and grant the `ADMINISTER DATABASE BULK OPERATIONS` permission.
83+
Then create a database user in `DataExplorationDB` for the login and grant the `ADMINISTER DATABASE BULK OPERATIONS` permission.
8484
```sql
8585
CREATE USER data_explorer FOR LOGIN data_explorer;
8686
GO

0 commit comments

Comments
 (0)