By default, no insert triggers are triggered in the MS Sql Server for bulk inserts.
This must be explicitly specified when executing a bulk insert. In C# this works by passing "SqlBulkCopyOptions.FireTriggers" in SqlBulkCopy. Is there a way to do the same here?
By default, no insert triggers are triggered in the MS Sql Server for bulk inserts.
This must be explicitly specified when executing a bulk insert. In C# this works by passing "SqlBulkCopyOptions.FireTriggers" in SqlBulkCopy. Is there a way to do the same here?