Skip to content

Commit 7a4681e

Browse files
authored
Update develop-storage-files-storage-access-control.md
Update my change request from sql_login_name to login_name, and sql_user_name to user_name.
1 parent 5704641 commit 7a4681e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -278,13 +278,13 @@ To grant the ability manage credentials:
278278
- 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:
279279
280280
```sql
281-
GRANT ALTER ANY CREDENTIAL TO [sql_login_name];
281+
GRANT ALTER ANY CREDENTIAL TO [login_name];
282282
```
283283
284284
- 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:
285285
286286
```sql
287-
GRANT CONTROL ON DATABASE::[database_name] TO [sql_user_name];
287+
GRANT CONTROL ON DATABASE::[database_name] TO [user_name];
288288
```
289289
290290
### Grant permissions to use credential
@@ -294,13 +294,13 @@ Database users who access external storage must have permission to use credentia
294294
To grant the `REFERENCES` permission on a server-level credential for a SQL login, use the following T-SQL query in the master database:
295295
296296
```sql
297-
GRANT REFERENCES ON CREDENTIAL::[server-level_credential] TO [sql_login_name];
297+
GRANT REFERENCES ON CREDENTIAL::[server-level_credential] TO [login_name];
298298
```
299299

300300
To grant a `REFERENCES` permission on a database-scoped credential for a database user, use the following T-SQL query in the user database:
301301

302302
```sql
303-
GRANT REFERENCES ON DATABASE SCOPED CREDENTIAL::[database-scoped_credential] TO [sql_user_name];
303+
GRANT REFERENCES ON DATABASE SCOPED CREDENTIAL::[database-scoped_credential] TO [user_name];
304304
```
305305

306306
## Server-level credential

0 commit comments

Comments
 (0)