SSIS Runs Okay Individual Tasks, Not Together

Posted by davemackey on Stack Overflow See other posts from Stack Overflow or by davemackey
Published on 2010-06-18T13:51:34Z Indexed on 2010/06/18 14:13 UTC
Read the original article Hit count: 324

I have a simple SSIS Project. In the control flow I have three steps:

Step 1: Select Data from Db1.Table1

Step 2: Create Table2 in Db2

Step 3: Copy Data in Db1.Table1 to Db2.Table2

If I "Execute Task" one by one in order, it executes fine...but if I try running the entire project I receive the following error:

Error at Copy Data from Table1 to DB2 dbo Table2 Task [OLE DB Destination[40]]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040E37.

An OLE DB record is available. Source: "Microsoft OLE DB Provider for SQL Server" Hresult: 0x80040E37 Description: "Invalid object name 'DB2.dbo.Table2".".

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about tsql