Why aren't my triggers firing during an insert by SSIS?

前端 未结 3 1861
抹茶落季
抹茶落季 2020-12-29 04:26

I have an SSIS data flow task with an OLE DB Destination component that inserts records into a table with a trigger. When I execute a normal INSERT statement a

3条回答
  •  醉话见心
    2020-12-29 04:29

    You can do this without using SQL Server Data Tool for Visual Studio by editing the dtsx File with Notepad (or any other Text editors).

    Search for the following property:

    
          TABLOCK,CHECK_CONSTRAINTS
    
    

    and add the value FIRE_TRIGGERS as Diego already described.

提交回复
热议问题