Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error While Copying database from SQL server 2005 to SQL server 2008 using Import wizard

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)

like image 873
Pinu Avatar asked Jul 15 '10 13:07

Pinu


1 Answers

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.

like image 97
jl. Avatar answered Sep 22 '22 15:09

jl.