Skip to content

Commit 6754df0

Browse files
committed
Fixes
1 parent e079729 commit 6754df0

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

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

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,10 @@ If you don't have an Azure subscription, create a [free](https://azure.microsoft
143143
2. Insert initial watermark values for both source tables into the watermark table.
144144

145145
```sql
146-
147146
INSERT INTO watermarktable
148147
VALUES
149148
('customer_table','1/1/2010 12:00:00 AM'),
150149
('project_table','1/1/2010 12:00:00 AM');
151-
152150
```
153151

154152
### Create a stored procedure in the Azure SQL Database
@@ -443,7 +441,7 @@ In this step, you create datasets to represent the data source, the data destina
443441

444442
Here is the sample output of the cmdlet:
445443

446-
```json
444+
```output
447445
DatasetName : SourceDataset
448446
ResourceGroupName : <ResourceGroupName>
449447
DataFactoryName : <DataFactoryName>
@@ -490,7 +488,7 @@ In this step, you create datasets to represent the data source, the data destina
490488

491489
Here is the sample output of the cmdlet:
492490

493-
```json
491+
```output
494492
DatasetName : SinkDataset
495493
ResourceGroupName : <ResourceGroupName>
496494
DataFactoryName : <DataFactoryName>
@@ -528,7 +526,7 @@ In this step, you create a dataset for storing a high watermark value.
528526

529527
Here is the sample output of the cmdlet:
530528

531-
```json
529+
```output
532530
DatasetName : WatermarkDataset
533531
ResourceGroupName : <ResourceGroupName>
534532
DataFactoryName : <DataFactoryName>
@@ -775,7 +773,7 @@ The pipeline takes a list of table names as a parameter. The **ForEach activity*
775773

776774
Here is the sample output:
777775

778-
```console
776+
```output
779777
PipelineName : IncrementalCopyPipeline
780778
ResourceGroupName : <ResourceGroupName>
781779
DataFactoryName : <DataFactoryName>
@@ -839,12 +837,13 @@ The pipeline takes a list of table names as a parameter. The **ForEach activity*
839837
In SQL Server Management Studio, run the following queries against the target SQL database to verify that the data was copied from source tables to destination tables:
840838

841839
**Query**
840+
842841
```sql
843842
select * from customer_table
844843
```
845844

846845
**Output**
847-
```
846+
```output
848847
===========================================
849848
PersonID Name LastModifytime
850849
===========================================
@@ -863,7 +862,7 @@ select * from project_table
863862

864863
**Output**
865864

866-
```
865+
```output
867866
===================================
868867
Project Creationtime
869868
===================================
@@ -880,7 +879,7 @@ select * from watermarktable
880879

881880
**Output**
882881

883-
```
882+
```output
884883
======================================
885884
TableName WatermarkValue
886885
======================================
@@ -923,12 +922,14 @@ VALUES
923922
In SQL Server Management Studio, run the following queries against the target database to verify that the updated/new data was copied from source tables to destination tables.
924923

925924
**Query**
925+
926926
```sql
927927
select * from customer_table
928928
```
929929

930930
**Output**
931-
```
931+
932+
```output
932933
===========================================
933934
PersonID Name LastModifytime
934935
===========================================
@@ -949,7 +950,7 @@ select * from project_table
949950

950951
**Output**
951952

952-
```
953+
```output
953954
===================================
954955
Project Creationtime
955956
===================================
@@ -969,7 +970,7 @@ select * from watermarktable
969970

970971
**Output**
971972

972-
```
973+
```output
973974
======================================
974975
TableName WatermarkValue
975976
======================================

0 commit comments

Comments
 (0)