Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / SQL-Server

SSIS insert bulk of data into remote table with trigger

5.00/5 (1 vote)
17 Nov 2009CPOL 14.2K  
hmmm, nice we have SSIS it makes life easier but it usually comes with non-understood problems like SQL Server Destination (2185) failed with error code 0xC0202071 it means when you insert data into table in remote SQL Server don't use SQL Server Destination component however use OLE DB Destinatio
hmmm, nice we have SSIS it makes life easier but it usually comes with non-understood problems like "SQL Server Destination" (2185) failed with error code 0xC0202071 it means when you insert data into table in remote SQL Server don't use SQL Server Destination component however use OLE DB Destination component, thank you SQL Server Central Anyway I used OLE DB Destination component and everything went well but I found the trigger which updates something doesn't fire simply because I do bulk insert and I should tell the BIDS please fire it. So, right click on OLE DB Destination component then Show Advanced Editor... Component properties FastLoadOptions write FIRE_TRIGGERS ssis post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)