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/azure-functions/durable/quickstart-mssql.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -304,9 +304,9 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
304
304
305
305
1. Start by setting your developer identity as the database's admin.
306
306
307
-
The assignee is your identity, so change to your microsoft.com email:
307
+
The assignee is your identity, so change to your email:
308
308
```azurecli
309
-
assignee=$(az ad user show --id "someone@microsoft.com" --query "id" --output tsv)
309
+
assignee=$(az ad user show --id "someone@example.com" --query "id" --output tsv)
310
310
```
311
311
312
312
Set assignee as admin of the Azure SQL database:
@@ -316,7 +316,7 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
316
316
317
317
1. Connect to the SQL database created previously using tools such as [Azure Data Studio](/azure-data-studio/download-azure-data-studio) or [SQL Management Server Studio](/ssms/download-sql-server-management-studio-ssms) to grant access to the managed identity. Or you can run the following [SQLCMD](/sql/tools/sqlcmd/sqlcmd-utility) command to connect:
Grant your identity _db_owner_ access by running the following query against the database. The `IDENTITY_OBJECT_ID` is the _PrincipalId_ from the identity creation step.
0 commit comments