简体   繁体   English

使用 azure 数据工厂的无日期或主键列的增量加载

[英]Incremental load without date or primary key column using azure data factory

I am having a source lets say SQL DB or an oracle database and I wanted to pull the table data to Azure SQL database. I am having a source lets say SQL DB or an oracle database and I wanted to pull the table data to Azure SQL database. But the problem is I don't have any date column on which data is getting inserting or a primary key column.但问题是我没有任何要插入数据的日期列或主键列。 So is there any other way to perform this operation.那么有没有其他方法可以执行此操作。

One way of doing it semi-incremental is to partition the table by a fairly stable column in the source table, then you can use mapping data flow to compare the partitions ( can be done with row counts, aggregations, hashbytes etc ).半增量的一种方法是通过源表中相当稳定的列对表进行分区,然后您可以使用映射数据流来比较分区(可以通过行计数、聚合、哈希字节等来完成)。 Each load you store the compare output in the partitions metadata somewhere to be able to compare it again the next time you load.每次加载时,您都会将比较 output 存储在分区元数据中的某个位置,以便下次加载时再次进行比较。 That way you can reload only the partitions that were changed since your last load.这样,您只能重新加载自上次加载以来更改的分区。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Azure 数据工厂中没有上次修改日期和主键字段的增量加载 - Incremental Load without Last Modified Date and Primary Key field in Azure Data Factory 如何使用 Azure 数据工厂对日期或键列执行增量加载 - How to perform Incremental Load with date or key column using Azure data factory Azure 数据工厂增量加载,无需更改本地数据库 - Azure Data Factory Incremental Load without altering on premises database 使用 Azure 数据工厂进行增量数据传输 - Incremental data transfer using Azure Data Factory 使用增量ID作为水印在Azure数据工厂管道中复制数据而不是日期时间 - Using an incremental id as watermark for copying data in azure data factory pipeline instead of date time Azure数据工厂| 从SFTP到Blob的增量数据加载 - Azure data factory | incremental data load from SFTP to Blob 在 Azure 数据工厂中添加日期列 - Add a date column in Azure Data Factory Azure Synapse - 管道 - 复制数据 - 没有表的增量加载 - Azure Synapse - Pipelines - Copy Data - incremental load without table Azure Synapse - 增量数据加载 - Azure Synapse - Incremental Data Load 使用azure数据工厂从远程服务器到azure增量sftp的方法是什么 - What is the way to incremental sftp from remote server to azure using azure data factory
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM