使用Azure数据工厂中的UPSER进行复制数据活动移动数据时的超时错误
I am facing a timeout issue.
Basically, I move data from source to target using copy data activity and the Table has 600k rows.
I use upsert instead of the insert because I want to check if the same data is present then the data does not move but I am facing a time issue.
Below is the error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于upsert = insert +更新,如果我是您,我可以通过
2.如果插入有效但更新失败,我将连接到数据库可能使用的是SSM,并尝试查看是否喜欢select *
select * select * yourtable where id = {someenexistId}
如果本次timesout,则可能必须在该表(可能是)
Since UPSERT = INSERT + UPDATE , if I was you I could have investigated this by
2.If INSERT works but UPDATE fails , I will connect to the DB may be using may be SSMS and try to see if somethng like
SELECT * from yourTable where id = {someexistid}
If this timesout , you may have to create a INDEX ON the table ( may be )