We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f95b9 commit 00b9d51Copy full SHA for 00b9d51
articles/automation/manage-sql-server-in-automation.md
@@ -54,7 +54,7 @@ To allow access from the Automation system managed identity to the Azure SQL dat
54
```sql
55
# AutomationAccount - replace with your Automation account's name
56
# ObjectID - replace with object (principal) ID for your system managed identity principal from step 1.
57
- CREATE USER "AutomationAccount" FROM EXTERNAL PROVIDER WITH OBJECT_ID= `ObjectID`
+ CREATE USER "AutomationAccount" FROM EXTERNAL PROVIDER WITH OBJECT_ID = `ObjectID`
58
EXEC sp_addrolemember `db_owner`, "AutomationAccount"
59
```
60
0 commit comments