Skip to content

Commit 5ec3a96

Browse files
committed
use connect instead of assessment
1 parent d2e85db commit 5ec3a96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/database-migration-service-sql-permissions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 12/19/2022
66
ms.author: ajithkr-ms
77
---
88

9-
The login used to assess a SQL Server instance requires certain minimal permissions to query the requisite information. The following script shows creation of a SQL Server login with the requisite permissions.
9+
The login used to connect to a source SQL Server instance requires certain minimal permissions to query the requisite information. The following script shows creation of a SQL Server login with the requisite permissions.
1010

1111
```sql
1212
-- Create a login to run the assessment
@@ -61,9 +61,9 @@ ms.author: ajithkr-ms
6161
Here's how the permissions script can be used:
6262

6363
- Save the permissions script (with valid password string) as an _.sql_ file, say _c:\workspace\MinPermissions.sql_
64-
- Connect to the instance(s) to be assessed using an account with sysadmin permissions and execute the script. You can use **SQL Server Management Studio** or **sqlcmd**. The following example uses a trusted connection.
64+
- Connect to the instance(s) using an account with sysadmin permissions and execute the script. You can use **SQL Server Management Studio** or **sqlcmd**. The following example uses a trusted connection.
6565
```cmd
6666
sqlcmd.exe -S sourceserver\sourceinstance -d master -E -i c:\workspace\MinPermissions.sql
6767
```
68-
- Use the minimal permissions account so created for assessment.
68+
- Use the minimal permissions account so created for further connections.
6969

0 commit comments

Comments
 (0)