SQL Server 2008 - 更改 MaximumErrorCount 或修复错误
我尝试使用导入数据向导将所有表和视图从 SQL Server 2005 上的数据库复制到 SQL Server 2008 上的数据库,但运行一段时间后,它只从 570 个表和视图中复制了 230 个表,并给出了以下内容警告。
警告 0x80019002:数据流任务 46:SSIS 警告代码 DTS_W_MAXIMUMERRORCOUNTREACHED。 Execution 方法成功,但引发的错误数 (1) 达到允许的最大值 (1);导致失败。当错误数量达到 MaximumErrorCount 中指定的数量时,就会发生这种情况。更改 MaximumErrorCount 或修复错误。 (SQL Server导入和导出向导)
对此问题最好的解决方法是什么?如何更改最大错误计数?
I am trying to copy all the tables and views from a database on SQL Server 2005 to a database on SQL Server 2008 using the Import data wizard, but after running for some time it just copied 230 tables from 570 tables and views and gave the following warning.
Warning 0x80019002: Data Flow Task 46: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED. The Execution method succeeded, but the number of errors raised (1) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
(SQL Server Import and Export Wizard)
What is the best possible fix for this? How can I change the max error count?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要更改错误计数。这只是掩盖了问题。找出出现错误的原因并解决它。
Do not change the error count. That is just masking the problem. FInd out why you are getting errors and fix that.