Skip to content

Commit c0818e9

Browse files
committed
edit pass: tutorial-incremental-copy-change-tracking-feature-portal
1 parent fcfd643 commit c0818e9

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/data-factory/tutorial-incremental-copy-change-tracking-feature-portal.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ In this tutorial, you create two pipelines that perform the following operations
132132
![Screenshot that shows selection of a data factory in creating a resource.](media/tutorial-incremental-copy-change-tracking-feature-portal/new-azure-data-factory-menu.png)
133133
1. On the **New data factory** page, enter **ADFTutorialDataFactory** for the name.
134134

135-
The name of data factory must be globally unique. If you get an error that says the name that you chose is not available, change the name (for example, to **yournameADFTutorialDataFactory**) and try creating the data factory again. For more information, see [Data Factory naming rules](naming-rules.md).
135+
The name of data factory must be globally unique. If you get an error that says the name that you chose is not available, change the name (for example, to **yournameADFTutorialDataFactory**) and try creating the data factory again. For more information, see [Azure Data Factory naming rules](naming-rules.md).
136136

137137
1. Select the Azure subscription in which you want to create the data factory.
138138
1. For **Resource Group**, take one of the following steps:
@@ -150,7 +150,7 @@ In this tutorial, you create two pipelines that perform the following operations
150150
1. Select **Review + create**.
151151
1. Select **Create**.
152152

153-
On the dashboard, the **Deploying data factory** tile shows the status.
153+
On the dashboard, the **Deploying Data Factory** tile shows the status.
154154

155155
:::image type="content" source="media/tutorial-incremental-copy-change-tracking-feature-portal/deploying-data-factory.png" alt-text="Screenshot of the tile that shows the status of deploying a data factory.":::
156156
1. After the creation is complete, the **Data Factory** page appears. Select the **Launch studio** tile to open the Azure Data Factory UI on a separate tab.
@@ -161,7 +161,7 @@ You create linked services in a data factory to link your data stores and comput
161161

162162
### Create an Azure Storage linked service
163163

164-
To link your Azure storage account to the data factory:
164+
To link your storage account to the data factory:
165165

166166
1. In the Data Factory UI, on the **Manage** tab, under **Connections**, select **Linked services**. Then select **+ New** or the **Create linked service** button.
167167
![Screenshot that shows selections for creating a linked service.](media/tutorial-incremental-copy-change-tracking-feature-portal/new-connection-button-storage.png)
@@ -177,7 +177,7 @@ To link your Azure storage account to the data factory:
177177

178178
To link your database to the data factory:
179179

180-
1. In the Data Factory UI, on the **Manage** tab, under **Connections**, select **Linked services** > **+ New**.
180+
1. In the Data Factory UI, on the **Manage** tab, under **Connections**, select **Linked services**. Then select **+ New**.
181181
1. In the **New Linked Service** window, select **Azure SQL Database**, and then select **Continue**.
182182
1. Enter the following information:
183183
1. For **Name**, enter **AzureSqlDatabaseLinkedService**.
@@ -202,7 +202,7 @@ In this section, you create datasets to represent the data source and data desti
202202
![Screenshot that shows selections for starting the creation of a dataset.](media/tutorial-incremental-copy-change-tracking-feature-portal/new-dataset-menu.png)
203203
1. Select **Azure SQL Database**, and then select **Continue**.
204204
1. In the **Set Properties** window, take the following steps:
205-
1. For **Name**, enter **SourceDataset** as the name of the dataset.
205+
1. For **Name**, enter **SourceDataset**.
206206
1. For **Linked service**, select **AzureSqlDatabaseLinkedService**.
207207
1. For **Table name**, select **dbo.data_source_table**.
208208
1. For **Import schema**, select the **From connection/store** option.
@@ -220,9 +220,9 @@ In the following procedure, you create a dataset to represent the data that's co
220220
1. Select **Azure Blob Storage**, and then select **Continue**.
221221
1. Select the format of the data type as **DelimitedText**, and then select **Continue**.
222222
1. In the **Set properties** window, take the following steps:
223-
1. For **Name**, enter **SinkDataset** the name of the dataset.
223+
1. For **Name**, enter **SinkDataset**.
224224
1. For **Linked service**, select **AzureBlobStorageLinkedService**.
225-
1. For **File path**, enter **adftutorial/incchgtracking** as the folder name.
225+
1. For **File path**, enter **adftutorial/incchgtracking**.
226226
1. Select **OK**.
227227
1. After the dataset appears in the tree view, go to the **Connection** tab and select the **File name** text box. When the **Add dynamic content** option appears, select it.
228228

@@ -237,7 +237,7 @@ In the following procedure, you create a dataset for storing the change tracking
237237
1. In the Data Factory UI, on the **Author** tab, select **+**, and then select **Dataset**.
238238
1. Select **Azure SQL Database**, and then select **Continue**.
239239
1. In the **Set Properties** window, take the following steps:
240-
1. For **Name**, enter **ChangeTrackingDataset** as the name of the dataset.
240+
1. For **Name**, enter **ChangeTrackingDataset**.
241241
1. For **Linked service**, select **AzureSqlDatabaseLinkedService**.
242242
1. For **Table name**, select **dbo.table_store_ChangeTracking_version**.
243243
1. For **Import schema**, select the **From connection/store** option.
@@ -252,7 +252,7 @@ In the following procedure, you create a pipeline with a copy activity that copi
252252
![Screenshot that shows selections for starting to create a pipeline for a data factory.](media/tutorial-incremental-copy-change-tracking-feature-portal/new-pipeline-menu.png)
253253
1. A new tab appears for configuring the pipeline. The pipeline also appears in the tree view. In the **Properties** window, change the name of the pipeline to **FullCopyPipeline**.
254254
1. In the **Activities** toolbox, expand **Move & transform**. Take one of the following steps:
255-
- Drag the **Copy** activity to the pipeline designer surface.
255+
- Drag the copy activity to the pipeline designer surface.
256256
- On the search bar under **Activities**, search for the copy data activity, and then set the name to **FullCopyActivity**.
257257
1. Switch to the **Source** tab. For **Source Dataset**, select **SourceDataset**.
258258
1. Switch to the **Sink** tab. For **Sink Dataset**, select **SinkDataset**.
@@ -324,7 +324,7 @@ SET [Age] = '10', [name]='update' where [PersonID] = 1
324324

325325
In the following procedure, you create a pipeline with activities and run it periodically. When you run the pipeline:
326326

327-
- The *lookup activities* get the old and new `SYS_CHANGE_VERSION` values from Azure SQL Database and pass it to the copy activity.
327+
- The *lookup activities* get the old and new `SYS_CHANGE_VERSION` values from Azure SQL Database and pass them to the copy activity.
328328
- The *copy activity* copies the inserted, updated, or deleted data between the two `SYS_CHANGE_VERSION` values from Azure SQL Database to Azure Blob Storage.
329329
- The *stored procedure activity* updates the value of `SYS_CHANGE_VERSION` for the next pipeline run.
330330

@@ -335,7 +335,7 @@ In the following procedure, you create a pipeline with activities and run it per
335335
3. Expand **General** in the **Activities** toolbox. Drag the lookup activity to the pipeline designer surface, or search in the **Search activities** box. Set the name of the activity to **LookupLastChangeTrackingVersionActivity**. This activity gets the change tracking version used in the last copy operation that's stored in the `table_store_ChangeTracking_version` table.
336336
4. Switch to the **Settings** tab in the **Properties** window. For **Source Dataset**, select **ChangeTrackingDataset**.
337337
5. Drag the lookup activity from the **Activities** toolbox to the pipeline designer surface. Set the name of the activity to **LookupCurrentChangeTrackingVersionActivity**. This activity gets the current change tracking version.
338-
6. Switch to the **Settings** tab in the **Properties** window, and take the following steps:
338+
6. Switch to the **Settings** tab in the **Properties** window, and then take the following steps:
339339

340340
1. For **Source dataset**, select **SourceDataset**.
341341
2. For **Use query**, select **Query**.
@@ -362,19 +362,19 @@ In the following procedure, you create a pipeline with activities and run it per
362362
9. Switch to the **Sink** tab. For **Sink Dataset**, select **SinkDataset**.
363363
10. Connect both lookup activities to the copy activity one by one. Drag the green button attached to the lookup activity to the copy activity.
364364
11. Drag the stored procedure activity from the **Activities** toolbox to the pipeline designer surface. Set the name of the activity to **StoredProceduretoUpdateChangeTrackingActivity**. This activity updates the change tracking version in the `table_store_ChangeTracking_version` table.
365-
12. Switch to the **Settings** tab, and take the following steps:
365+
12. Switch to the **Settings** tab, and then take the following steps:
366366

367367
1. For **Linked service**, select **AzureSqlDatabaseLinkedService**.
368368
2. For **Stored procedure name**, select **Update_ChangeTracking_Version**.
369369
3. Select **Import**.
370-
4. In the **Stored procedure parameters** section, specify following values for the parameters:
370+
4. In the **Stored procedure parameters** section, specify the following values for the parameters:
371371

372372
| Name | Type | Value |
373373
| ---- | ---- | ----- |
374374
| `CurrentTrackingVersion` | Int64 | `@{activity('LookupCurrentChangeTrackingVersionActivity').output.firstRow.CurrentChangeTrackingVersion}` |
375375
| `TableName` | String | `@{activity('LookupLastChangeTrackingVersionActivity').output.firstRow.TableName}` |
376376

377-
![Screenshot that shows setting parameters for the stored procedure activity.](media/tutorial-incremental-copy-change-tracking-feature-portal/stored-procedure-parameters.png)
377+
![Screenshot that shows setting parameters for the stored procedure activity.](media/tutorial-incremental-copy-change-tracking-feature-portal/stored-procedure-parameters.png)
378378

379379
13. Connect the copy activity to the stored procedure activity. Drag the green button attached to the copy activity to the stored procedure activity.
380380
14. Select **Validate** on the toolbar. Confirm that there are no validation errors. Close the **Pipeline Validation Report** window.

0 commit comments

Comments
 (0)