SSIS insert bulk of data into remote table with trigger





5.00/5 (1 vote)
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 
