You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql/develop-storage-files-storage-access-control.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -278,13 +278,13 @@ To grant the ability manage credentials:
278
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:
279
279
280
280
```sql
281
-
GRANT ALTER ANY CREDENTIAL TO [sql_login_name];
281
+
GRANT ALTER ANY CREDENTIAL TO [login_name];
282
282
```
283
283
284
284
- To allow a user to create or drop a database scoped credential, an administrator must grant the `CONTROL` permission on the database to the database user in the user database. For example:
285
285
286
286
```sql
287
-
GRANT CONTROL ON DATABASE::[database_name] TO [sql_user_name];
287
+
GRANT CONTROL ON DATABASE::[database_name] TO [user_name];
288
288
```
289
289
290
290
### Grant permissions to use credential
@@ -294,13 +294,13 @@ Database users who access external storage must have permission to use credentia
294
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:
295
295
296
296
```sql
297
-
GRANT REFERENCES ON CREDENTIAL::[server-level_credential] TO [sql_login_name];
297
+
GRANT REFERENCES ON CREDENTIAL::[server-level_credential] TO [login_name];
298
298
```
299
299
300
300
To grant a `REFERENCES` permission on a database-scoped credential for a database user, use the following T-SQL query in the user database:
301
301
302
302
```sql
303
-
GRANTREFERENCESON DATABASE SCOPED CREDENTIAL::[database-scoped_credential] TO [sql_user_name];
303
+
GRANTREFERENCESON DATABASE SCOPED CREDENTIAL::[database-scoped_credential] TO [user_name];
0 commit comments