Viewing 5 posts - 1 through 5 (of 5 total)
I want to make sure people realise that enabling and disabling a trigger (usually as part of an archiving procedure) is completely normal and safe.
There is alot of disinformation about...
March 21, 2012 at 6:05 am
What utter nonsense
altering a table within a transaction requires an exclusive lock on the table
so nobody can change the table in any way once the trigger is disabled (DDL or...
March 20, 2012 at 4:03 am
Please see <<< questions below ...
SET XACT_ABORT ON <<< will this affect try catch whether ON or OFF?
GO
BEGIN TRY
BEGIN TRAN
...
October 22, 2009 at 9:47 am
Thanks for the detailed description of those gotchas
Did you have any thoughts on creating a transactional script with multiple CREATE/ALTER VIEW/PROC/TRIGGER/FUNCTION statements?
Is the exec('alter view') approach a good one /...
October 22, 2009 at 9:39 am
I *think* the problem stems from the fact the statement MAY return more than one record
rewrite it so it can only EVER return one record and it might be fine
select...
October 21, 2009 at 2:01 pm
Viewing 5 posts - 1 through 5 (of 5 total)