Skip to content

Commit 425ce07

Browse files
authored
Update known-issues-azure-sql-migration-azure-data-studio.md
error 2060 - correcting the T-sql - v2
1 parent 5667ee2 commit 425ce07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/dms/known-issues-azure-sql-migration-azure-data-studio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,13 @@ This article provides a list of known issues and troubleshooting steps associate
269269

270270
1. Add 'sysadmin' role to the account, which grants the admin permission.
271271

272-
1. If customers can't use admin account or can't grant admin permission to the account, then minimum permission on source SQL Server required is "db_owner"and they can create a user in master and grant **##MS_DatabaseManager##**,**##MS_DatabaseConnector##**, **##MS_DefinitionReader##** and **##MS_LoginManager##** fixed server roles to the user. For example,
272+
1. If customers can't use sysadmin account or can't grant sysadmin permission to the account, then minimum permission on source SQL Server required is "db_owner" and on target Azure SQL DB create a user in master and grant **##MS_DatabaseManager##**,**##MS_DatabaseConnector##**, **##MS_DefinitionReader##** and **##MS_LoginManager##** fixed server roles to the user. For example,
273273

274274
```sql
275275
-- Run the script in the master
276276
-- Please run the script on Master database
277-
CREATE LOGIN testuser with Password = '*********';
278-
ALTER SERVER ROLE ##MS_DefinitionReader## ADD MEMBER [testuser];
277+
CREATE LOGIN testuser with Password = '*********';
278+
ALTER SERVER ROLE ##MS_DefinitionReader## ADD MEMBER [testuser];
279279
GO
280280
ALTER SERVER ROLE ##MS_DatabaseConnector## ADD MEMBER [testuser];
281281
GO

0 commit comments

Comments
 (0)