Skip to content

Commit 30868e3

Browse files
authored
Update tutorial-incremental-copy-powershell.md
1 parent ff16b7a commit 30868e3

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

articles/data-factory/tutorial-incremental-copy-powershell.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,16 +221,18 @@ You create linked services in a data factory to link your data stores and comput
221221
```
222222
223223
### Create a SQL Database linked service
224-
1. Create a JSON file named AzureSQLDatabaseLinkedService.json in the C:\ADF folder with the following content. (Create the folder ADF if it doesn't already exist.) Replace <server>, <database>, <user id>, and <password> with the name of your server, database, user ID, and password before you save the file.
224+
1. Create a JSON file named AzureSQLDatabaseLinkedService.json in the C:\ADF folder with the following content. (Create the folder ADF if it doesn't already exist.) Replace <your-server-name> and <your-database-name> with the name of your server and database before you save the file. You must also configure your Azure SQL Server to [grant access to your data factory's managed identity](connector-azure-sql-database.md#use-managed-identity-for-authentication).
225225
226226
```json
227227
{
228-
"name": "AzureSQLDatabaseLinkedService",
229-
"properties": {
228+
"name": "AzureSqlDatabaseLinkedService",
229+
"properties": {
230230
"type": "AzureSqlDatabase",
231231
"typeProperties": {
232-
"connectionString": "Server = tcp:<server>.database.windows.net,1433;Initial Catalog=<database>; Persist Security Info=False; User ID=<user> ; Password=<password>; MultipleActiveResultSets = False; Encrypt = True; TrustServerCertificate = False; Connection Timeout = 30;"
233-
}
232+
"connectionString": "Server=tcp:<your-server-name>.database.windows.net,1433;Database=<your-database-name>;"
233+
},
234+
"authenticationType": "ManagedIdentity",
235+
"annotations": []
234236
}
235237
}
236238
```

0 commit comments

Comments
 (0)