Viewing 8 posts - 1 through 8 (of 8 total)
From BOL:
Effect of ANSI_WARNINGS Setting
The ANSI_WARNINGS setting affect query processor behavior despite the current settings of ARITHABORT and ARITHIGNORE.
For example, even if SET ARITHABORT or SET ARITHIGNORE is OFF, if...
September 3, 2002 at 4:02 am
Just wanted to clarify one thing:
The transaction is not rolled back unless you have xact_abort also set to ON. Only the statement that caused the error is rolled back.
To...
September 3, 2002 at 2:07 am
What is the compatibility level of your database? Should be 80 for functions to work.
August 22, 2002 at 2:01 am
You could use something like this:
if (select min(dbid) from master..sysprocesses where spid=@@spid)=<your production database id here>
xp_sendmail ...
August 13, 2002 at 8:32 am
ALTER DATABASE 'database'
SET SINGLE_USER WITH ROLLBACK IMMEDIATE
I think this is supposed to kill all connections. Am I wrong?
July 3, 2002 at 3:10 am
Viewing 8 posts - 1 through 8 (of 8 total)