Skip to content

Commit a251ed3

Browse files
authored
Update develop-storage-files-storage-access-control.md
remove a few 'sql' prefix to make the content also applies to AAD logins.
1 parent 7a4681e commit a251ed3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/synapse-analytics/sql/develop-storage-files-storage-access-control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ To query a file located in Azure Storage, your serverless SQL pool endpoint need
275275
276276
To grant the ability manage credentials:
277277
278-
- To allow a user to create or drop a server-level credential, an administrator must grant the `ALTER ANY CREDENTIAL` permission to the SQL login in the master database. For example:
278+
- To allow a user to create or drop a server-level credential, an administrator must grant the `ALTER ANY CREDENTIAL` permission to its login in the master database. For example:
279279
280280
```sql
281281
GRANT ALTER ANY CREDENTIAL TO [login_name];
@@ -291,7 +291,7 @@ To grant the ability manage credentials:
291291
292292
Database users who access external storage must have permission to use credentials. To use the credential, a user must have the `REFERENCES` permission on a specific credential.
293293
294-
To grant the `REFERENCES` permission on a server-level credential for a SQL login, use the following T-SQL query in the master database:
294+
To grant the `REFERENCES` permission on a server-level credential for a login, use the following T-SQL query in the master database:
295295
296296
```sql
297297
GRANT REFERENCES ON CREDENTIAL::[server-level_credential] TO [login_name];

0 commit comments

Comments
 (0)