views:

36

answers:

1

Hi SSIS Geniuses, I Have an SSIS package in SQL Server 2005 that takes data from a flat file and puts it in a table in SQL Server 2005. Now I want it to send it to an additional location along with the 2005 location. This new table is in SQL Server 2008. Can it be done without porting my SSIS package to SQL Server 2008?

Thank you for your help in advance.

A: 

You can have your 2005 package write to 2008 database without upgrading.

decompiled
But the OLEDB Connection Manager does not connect to a 2008 data base.
Try using SQLNCLI.
decompiled
Thank you. Also this was a non issue. The OLEDB Connection manager in SSIS 2005 can connect to 2008 SQL Server database. Tried both out.SQLNCLI has issues with not having the same data type in dealing with dates.
You are welcome =)
decompiled