|
I am using the SQL import wizzard to import my file into an existing table on my DB. I have created ad trigger using the below code. but it does not run. How do I make this run. Note when I import data I am importing many rows. create trigger [dbo].[A_ImportRun] on [dbo].[A_Import] after insert as exec A_ImportData
(comments are locked)
|
|
This is the default behavior if you are using the data import wizard i.e. triggers are not fired during the bulk load. For that you must save the package and change the OLEDB destination's "FastLoadOptions" property i.e. After opening the saved package in BIDS do the following
But please keep in mind that your trigger should be able to handle multiple rows insertion. Hope it helps. This is solution how to let the triggers fire, however better approach will be the one @Fatherjack suggested to fire the stored proc after import using the Execute SQL task rather than fire stored proc in a trigger. So +1 to both of you. :-)
Mar 19 '12 at 08:33 PM
Pavel Pawlowski
(comments are locked)
|
|
If you have used the data import wizard to import the data then you will need to have saved the import process as a SSIS package. Providing you have the Business Intelligence Development Studio installed you can edit this package and add an "Execute SQL" step to it that executes the script you need.
(comments are locked)
|

