Skip to content

Commit c96d095

Browse files
committed
fix blocker
Signed-off-by: Hannah Hunter <[email protected]>
1 parent ea63211 commit c96d095

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/durable/quickstart-mssql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
304304
305305
1. Start by setting your developer identity as the database's admin.
306306

307-
The assignee is your identity, so change to your microsoft.com email:
307+
The assignee is your identity, so change to your email:
308308
```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)
310310
```
311311
312312
Set assignee as admin of the Azure SQL database:
@@ -316,7 +316,7 @@ az role assignment create --assignee "$clientId" --role "Storage Blob Data Owner
316316
317317
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:
318318
```bash
319-
sqlcmd -S <SQL_SERVER_NAME>.database.windows.net -d <DATABASE_NAME> -U <someone@microsoft.com> -P "ACCOUNT_PASSWORD" -G -l 30
319+
sqlcmd -S <SQL_SERVER_NAME>.database.windows.net -d <DATABASE_NAME> -U <someone@example.com> -P "ACCOUNT_PASSWORD" -G -l 30
320320
```
321321
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.
322322
```SQL

0 commit comments

Comments
 (0)