Viewing 10 posts - 1 through 10 (of 10 total)
Add Set XACT_Abort oFF to the beginning of your trigger. to my knowledge, that is the only thing you can do as a workaround.
July 22, 2015 at 1:09 am
Try this, should work for you.
CREATE TRIGGER a_insert ON a
FOR INSERT
AS
BEGIN
Set XACT_Abort oFF
begin try
DECLARE @a AS VARCHAR(40)
SET @a = 'count of transaction'...
July 22, 2015 at 12:56 am
Thanks for the answer. I had tried to create the temp table in the trigger and then use it up in the proc. but it did not work. but if...
May 14, 2015 at 8:06 am
Thanks for the answer. I had tried to create the temp table in the trigger and then use it up in the proc. but it did not work. but if...
May 14, 2015 at 8:04 am
Thanks. MSDn says the ref can only be SQL table. Does not it suck??!!
September 13, 2014 at 11:48 am
We are using SSIS 2012. No we don't have a plan to dump data in SQL.
I know that it can be used in MS Excel.
September 13, 2014 at 11:02 am
Eric the loop in this level does not iterate the tables or any other Enumeration. It is just a simple loop.
the tables' loop sits below the code shown:-)
August 30, 2014 at 6:46 am
But I have already done that with interop dll.
August 27, 2014 at 7:19 am
Come on Eirikur, it is not that similar!:Whistling:
August 27, 2014 at 7:18 am
Thanks Phil for the answer.
The rules are not too complicated to be done through T-SQL or Access query or VB scripting.
Although they are many in number. They are mostly...
August 25, 2014 at 3:06 am
Viewing 10 posts - 1 through 10 (of 10 total)