使用导入向导将数据库从 SQL Server 2005 复制到 SQL Server 2008 时出错
当我尝试复制数据库时出现以下错误,并且此时它已停止。
错误 0xc0047008:数据流任务 46:包包含两个具有重复名称的对象“输出列“ErrorCode”(720)”和“输出列“ErrorCode”(737)”。
警告 0x80019002:数据流任务 46:SSIS 警告代码 DTS_W_MAXIMUMERRORCOUNTREACHED。 Execution 方法成功,但引发的错误数 (1) 达到允许的最大值 (1);导致失败。当错误数量达到 MaximumErrorCount 中指定的数量时,就会发生这种情况。更改 MaximumErrorCount 或修复错误。 (SQL Server 导入和导出向导)
I am getting the following error when I am trying to copy database and it's getting stopped at this point.
Error 0xc0047008: Data Flow Task 46: The package contains two objects with the duplicate name of "output column "ErrorCode" (720)" and "output column "ErrorCode" (737)".
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您正在复制一个包含名为 ErrorCode 的列的表。如果我没记错的话,SSIS 会故意引发此错误,因为它在错误重定向中使用该名称。
Sounds like you are copying a table that has a column named ErrorCode. If I recall correctly, SSIS raises this error by design since it uses that name in error redirection.