Skip to content

Commit ae0a4ef

Browse files
Merge pull request #82299 from dearandyxu/master
add entry for template
2 parents e5ac25e + 01ac45b commit ae0a4ef

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

articles/data-factory/delete-activity.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,9 @@ Dataset for data destination used by copy activity.
558558
}
559559
}
560560
```
561+
562+
You can also get the template to move files from [here](solution-template-move-files.md).
563+
561564
## Known limitation
562565

563566
- Delete activity does not support deleting list of folders described by wildcard.

articles/data-factory/solution-templates-introduction.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ Data Factory uses Azure Resource Manager templates for saving data factory pipel
4444

4545
- [Copy multiple file containers between file-based stores](solution-template-copy-files-multiple-containers.md)
4646

47+
- [Move files](solution-template-move-files.md)
48+
4749
- [Delta copy from Database](solution-template-delta-copy-with-control-table.md)
4850

4951
- Copy from \<source\> to \<destination\>

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

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ In this case, you define a watermark in your source database. A watermark is a c
2525
![Workflow for using a watermark](media/tutorial-incremental-copy-overview/workflow-using-watermark.png)
2626

2727
For step-by-step instructions, see the following tutorials:
28-
2928
- [Incrementally copy data from one table in Azure SQL Database to Azure Blob storage](tutorial-incremental-copy-powershell.md)
3029
- [Incrementally copy data from multiple tables in on-premises SQL Server to Azure SQL Database](tutorial-incremental-copy-multiple-tables-powershell.md)
3130

31+
For templates, see the following:
32+
- [Delta copy with control table](solution-template-delta-copy-with-control-table.md)
33+
3234
## Delta data loading from SQL DB by using the Change Tracking technology
3335
Change Tracking technology is a lightweight solution in SQL Server and Azure SQL Database that provides an efficient change tracking mechanism for applications. It enables an application to easily identify data that was inserted, updated, or deleted.
3436

@@ -37,19 +39,22 @@ The workflow for this approach is depicted in the following diagram:
3739
![Workflow for using Change Tracking](media/tutorial-incremental-copy-overview/workflow-using-change-tracking.png)
3840

3941
For step-by-step instructions, see the following tutorial: <br/>
40-
[Incrementally copy data from Azure SQL Database to Azure Blob storage by using Change Tracking technology](tutorial-incremental-copy-change-tracking-feature-powershell.md)
42+
- [Incrementally copy data from Azure SQL Database to Azure Blob storage by using Change Tracking technology](tutorial-incremental-copy-change-tracking-feature-powershell.md)
4143

4244
## Loading new and changed files only by using LastModifiedDate
4345
You can copy the new and changed files only by using LastModifiedDate to the destination store. ADF will scan all the files from the source store, apply the file filter by their LastModifiedDate, and only copy the new and updated file since last time to the destination store. Please be aware if you let ADF scan huge amounts of files but only copy a few files to destination, you would still expect the long duration due to file scanning is time consuming as well.
4446

4547
For step-by-step instructions, see the following tutorial: <br/>
46-
[Incrementally copy new and changed files based on LastModifiedDate from Azure Blob storage to Azure Blob storage](tutorial-incremental-copy-lastmodified-copy-data-tool.md)
48+
- [Incrementally copy new and changed files based on LastModifiedDate from Azure Blob storage to Azure Blob storage](tutorial-incremental-copy-lastmodified-copy-data-tool.md)
49+
50+
For templates, see the following:
51+
- [Copy new files by LastModifiedDate](solution-template-copy-new-files-lastmodifieddate.md)
4752

4853
## Loading new files only by using time partitioned folder or file name.
4954
You can copy new files only, where files or folders has already been time partitioned with timeslice information as part of the file or folder name (for example, /yyyy/mm/dd/file.csv). It is the most performance approach for incremental loading new files.
5055

5156
For step-by-step instructions, see the following tutorial: <br/>
52-
[Incrementally copy new files based on time partitioned folder or file name from Azure Blob storage to Azure Blob storage](tutorial-incremental-copy-partitioned-file-name-copy-data-tool.md)
57+
- [Incrementally copy new files based on time partitioned folder or file name from Azure Blob storage to Azure Blob storage](tutorial-incremental-copy-partitioned-file-name-copy-data-tool.md)
5358

5459
## Next steps
5560
Advance to the following tutorial:

0 commit comments

Comments
 (0)