What are the ramifications of setting ARITHABORT ON for all connections in SQL Server?Make SqlClient default to ARITHABORT ONDefinitive list of steps for SQL Server baseline testing?SQL Server recommended MAXDOP settings for NUMAIs there a canonical list of MySQL defaults which should be changed.Net Application Using Inefficient Query Plan - caused by ARITHABORT setting?Setting the right Max Server Memory value on an Active/Active SQL Server Clustered EnvironmentCPU clock speed versus CPU core count - higher GHz, or more cores for SQL Server?SMO, SSMS are slow for management of SQL Server in Docker when connecting to localhostSQL Server's “Total Server Memory” consumption stagnant for months with 64GB+ more availableSQL Server Processor affinity with trace flag 8002 ONWhy is cross db ownership chaining on by default for system DB

Can I tell a prospective employee that everyone in the team is leaving?

Gravitational Force Between Numbers

Is there a simple example that empirical evidence is misleading?

Why is the Eisenstein ideal paper so great?

Why isn't Tyrion mentioned in the in-universe book "A Song of Ice and Fire"?

Is superuser the same as root?

If a (distance) metric on a connected Riemannian manifold locally agrees with the Riemannian metric, is it equal to the induced metric?

What are Antecedent & Consequent Phrases in Music?

How to politely tell someone they did not hit "reply to all" in an email?

Grade-school elementary algebra presented in an abstract-algebra style?

How to deal with a colleague who is being aggressive?

How do I superimpose two math symbols?

Public transport tickets in UK for two weeks

Python program to take in two strings and print the larger string

Is the Unsullied name meant to be ironic? How did it come to be?

Why did the person in charge of a principality not just declare themself king?

Security vulnerabilities of POST over SSL

Parallel fifths in the orchestra

Find this cartoon

Should there be an "a" before "ten years imprisonment"?

What did the 'turbo' button actually do?

Drums and punctuation

Function argument returning void or non-void type

Why isn't 'chemically-strengthened glass' made with potassium carbonate to begin with?



What are the ramifications of setting ARITHABORT ON for all connections in SQL Server?


Make SqlClient default to ARITHABORT ONDefinitive list of steps for SQL Server baseline testing?SQL Server recommended MAXDOP settings for NUMAIs there a canonical list of MySQL defaults which should be changed.Net Application Using Inefficient Query Plan - caused by ARITHABORT setting?Setting the right Max Server Memory value on an Active/Active SQL Server Clustered EnvironmentCPU clock speed versus CPU core count - higher GHz, or more cores for SQL Server?SMO, SSMS are slow for management of SQL Server in Docker when connecting to localhostSQL Server's “Total Server Memory” consumption stagnant for months with 64GB+ more availableSQL Server Processor affinity with trace flag 8002 ONWhy is cross db ownership chaining on by default for system DB






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








8















So I've determined that the erratic behavior of my SQL Server is because of .Net SqlClient Data Provider's default setting of SET ARITHABORT OFF. With that said, I've read various articles that debate the best way to implement this. For me, I just want an easy way because SQL Server is suffering and my query tuning hasn't fully transcended across the app (and obviously adding the SET in a sp DOES NOT WORK).



In Erland Sommarskog's brilliant article about the topic, he basically suggests taking the safe approach by altering the app to issue SET ARITHABORT ON for the connection. However, in this answer from a dba.stackexchange question, Solomon Rutzky offers both an instance-wide and database-wide approach.



What ramifications am I missing here with setting this instance-wide? Any impact on replication by chance? AG considerations? To me... since SSMS has this set ON by default, I see no harm in setting this ON server-wide for all connections. Am I approaching this issue correctly? At the end of the day, I just need this SQL Server to perform above all else.










share|improve this question
























  • Reading over much of my answer that you linked to in the question, it now seems that it's OFF by default, some clients specifically turn it ON, but EF / SqlClient do not touch it, which means it remains as OFF.

    – Solomon Rutzky
    May 10 at 18:15






  • 1





    No EF, but you raise an interesting point with how EF can override the instance-wide setting. So, if a connection can override this, obviously the most reliable place to have this set is from within the connection that is established to SQL Server, if at all possible...

    – Eric Swiggum
    May 10 at 20:06

















8















So I've determined that the erratic behavior of my SQL Server is because of .Net SqlClient Data Provider's default setting of SET ARITHABORT OFF. With that said, I've read various articles that debate the best way to implement this. For me, I just want an easy way because SQL Server is suffering and my query tuning hasn't fully transcended across the app (and obviously adding the SET in a sp DOES NOT WORK).



In Erland Sommarskog's brilliant article about the topic, he basically suggests taking the safe approach by altering the app to issue SET ARITHABORT ON for the connection. However, in this answer from a dba.stackexchange question, Solomon Rutzky offers both an instance-wide and database-wide approach.



What ramifications am I missing here with setting this instance-wide? Any impact on replication by chance? AG considerations? To me... since SSMS has this set ON by default, I see no harm in setting this ON server-wide for all connections. Am I approaching this issue correctly? At the end of the day, I just need this SQL Server to perform above all else.










share|improve this question
























  • Reading over much of my answer that you linked to in the question, it now seems that it's OFF by default, some clients specifically turn it ON, but EF / SqlClient do not touch it, which means it remains as OFF.

    – Solomon Rutzky
    May 10 at 18:15






  • 1





    No EF, but you raise an interesting point with how EF can override the instance-wide setting. So, if a connection can override this, obviously the most reliable place to have this set is from within the connection that is established to SQL Server, if at all possible...

    – Eric Swiggum
    May 10 at 20:06













8












8








8


2






So I've determined that the erratic behavior of my SQL Server is because of .Net SqlClient Data Provider's default setting of SET ARITHABORT OFF. With that said, I've read various articles that debate the best way to implement this. For me, I just want an easy way because SQL Server is suffering and my query tuning hasn't fully transcended across the app (and obviously adding the SET in a sp DOES NOT WORK).



In Erland Sommarskog's brilliant article about the topic, he basically suggests taking the safe approach by altering the app to issue SET ARITHABORT ON for the connection. However, in this answer from a dba.stackexchange question, Solomon Rutzky offers both an instance-wide and database-wide approach.



What ramifications am I missing here with setting this instance-wide? Any impact on replication by chance? AG considerations? To me... since SSMS has this set ON by default, I see no harm in setting this ON server-wide for all connections. Am I approaching this issue correctly? At the end of the day, I just need this SQL Server to perform above all else.










share|improve this question
















So I've determined that the erratic behavior of my SQL Server is because of .Net SqlClient Data Provider's default setting of SET ARITHABORT OFF. With that said, I've read various articles that debate the best way to implement this. For me, I just want an easy way because SQL Server is suffering and my query tuning hasn't fully transcended across the app (and obviously adding the SET in a sp DOES NOT WORK).



In Erland Sommarskog's brilliant article about the topic, he basically suggests taking the safe approach by altering the app to issue SET ARITHABORT ON for the connection. However, in this answer from a dba.stackexchange question, Solomon Rutzky offers both an instance-wide and database-wide approach.



What ramifications am I missing here with setting this instance-wide? Any impact on replication by chance? AG considerations? To me... since SSMS has this set ON by default, I see no harm in setting this ON server-wide for all connections. Am I approaching this issue correctly? At the end of the day, I just need this SQL Server to perform above all else.







sql-server performance execution-plan configuration ado.net






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 14 at 14:22







Eric Swiggum

















asked May 10 at 17:08









Eric SwiggumEric Swiggum

375217




375217












  • Reading over much of my answer that you linked to in the question, it now seems that it's OFF by default, some clients specifically turn it ON, but EF / SqlClient do not touch it, which means it remains as OFF.

    – Solomon Rutzky
    May 10 at 18:15






  • 1





    No EF, but you raise an interesting point with how EF can override the instance-wide setting. So, if a connection can override this, obviously the most reliable place to have this set is from within the connection that is established to SQL Server, if at all possible...

    – Eric Swiggum
    May 10 at 20:06

















  • Reading over much of my answer that you linked to in the question, it now seems that it's OFF by default, some clients specifically turn it ON, but EF / SqlClient do not touch it, which means it remains as OFF.

    – Solomon Rutzky
    May 10 at 18:15






  • 1





    No EF, but you raise an interesting point with how EF can override the instance-wide setting. So, if a connection can override this, obviously the most reliable place to have this set is from within the connection that is established to SQL Server, if at all possible...

    – Eric Swiggum
    May 10 at 20:06
















Reading over much of my answer that you linked to in the question, it now seems that it's OFF by default, some clients specifically turn it ON, but EF / SqlClient do not touch it, which means it remains as OFF.

– Solomon Rutzky
May 10 at 18:15





Reading over much of my answer that you linked to in the question, it now seems that it's OFF by default, some clients specifically turn it ON, but EF / SqlClient do not touch it, which means it remains as OFF.

– Solomon Rutzky
May 10 at 18:15




1




1





No EF, but you raise an interesting point with how EF can override the instance-wide setting. So, if a connection can override this, obviously the most reliable place to have this set is from within the connection that is established to SQL Server, if at all possible...

– Eric Swiggum
May 10 at 20:06





No EF, but you raise an interesting point with how EF can override the instance-wide setting. So, if a connection can override this, obviously the most reliable place to have this set is from within the connection that is established to SQL Server, if at all possible...

– Eric Swiggum
May 10 at 20:06










1 Answer
1






active

oldest

votes


















10














There are some defaults that exist merely because nobody really knows what the effect of changing them would be. For example, the default instance-level collation when installing on a system that uses "US English" as the OS language is SQL_Latin1_General_CP1_CI_AS. This makes no sense since the SQL_* collations are for pre-SQL Server 2000 compatibility. Starting in SQL Server 2000 you could actually choose a Windows collation, and so the default for US English systems should have been changed to Latin1_General_CI_AS. BUT, I guess nobody at Microsoft really knows what the impact will be to all of the various potential sub-systems and system stored procedures, etc.



So, I am not aware of any specific negative impact of setting it to ON as either a database default or even instance-wide. At the same time, I have not tested it. But even if I had tested it, I might still not use the same code paths as your application, so this is something that you really need to test in your environment. Set it to ON at the instance level in your Dev and QA environments and see how that works for a month or two. Then enable it in Staging / UAT. If all continues to go well for several weeks, roll that config change to Production. The key is to give as much time as possible for testing various code paths that are not hit daily. Some are hit weekly or months or annually. Some code paths are only hit by support, or some ad hoc report or maintenance proc that someone created years ago and never told you about and only gets used at random intervals (nah, that never happens ;-).



So, I did some testing on an instance that still has the default "user options" setting as I have never changed it.



Please note:




  • @@OPTIONS / 'user options' is a bitmasked value

  • 64 is the bit for ARITHABORT ON

SETUP



I tested with both SQLCMD (which uses ODBC) and LINQPad (which uses .NET SqlClient):



SQLCMD -W -S (local) ^
-Q"SELECT CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')') FROM sys.dm_exec_sessions ses WHERE ses.[session_id] = @@SPID;"
echo .


(the ^ is the DOS line continuation character; the . on the last line is just to force the extra line to make it easier to copy-and-paste)



In LINQPad:



using (SqlConnection connection =
new SqlConnection(@"Server=(local);Trusted_Connection=true;Database=tempdb;"))

using (SqlCommand command = connection.CreateCommand())

command.CommandText = @"SELECT @RetVal =
CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')')
FROM sys.dm_exec_sessions ses
WHERE ses.[session_id] = @@SPID;";
SqlParameter paramRetVal = new SqlParameter("@RetVal", SqlDbType.NVarChar, 500);
paramRetVal.Direction = ParameterDirection.Output;
command.Parameters.Add(paramRetVal);

connection.Open();
command.ExecuteNonQuery();

Console.WriteLine(paramRetVal.Value.ToString());




TEST 1: Before



SQLCMD returns:



master: 0 (ODBC)


LINQPad returns:



tempdb: 0 (.Net SqlClient Data Provider)


CHANGE DEFAULT CONNECTION OPTION:



The following T-SQL enables ARITHABORT without removing any other options that might be set, and without changing anything if ARITHABORT is already set in the bitmasked value.



DECLARE @UserOptions INT;

-- Get current bitmasked value and ensure ARITHABORT is enabled:
SELECT @UserOptions = CONVERT(INT, cnf.[value_in_use]) | 64 -- enable "ARITHABORT"
FROM sys.configurations cnf
WHERE cnf.[configuration_id] = 1534 -- user options

-- Apply new default connection options:
EXEC sys.sp_configure N'user options', @UserOptions;
RECONFIGURE;


TEST 2: After



SQLCMD returns:



master: 64 (ODBC)


LINQPad returns:



tempdb: 64 (.Net SqlClient Data Provider)


Conclusion



Given that:



  1. There does not seem to be any benefit to having ARITHABORT OFF

  2. There is benefit to having ARITHABORT ON

  3. The default connection setting (unless overridden by the connection) = OFF

  4. It does not appear that either ODBC or OLEDB / .NET SqlClient attempt to set ARITHABORT, thus they accept the default setting

I would suggest changing the instance-wide default connection options (as shown above). This would be less obtrusive than updating the application. I would only update the app if you find a problem with changing the instance-wide setting.



P.S. I did a simple test with changing tempdb and not changing the instance-wide setting and it did not seem to work.






share|improve this answer




















  • 1





    Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

    – Eric Swiggum
    May 12 at 4:35











  • @EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

    – Solomon Rutzky
    May 12 at 16:46






  • 1





    I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

    – Eric Swiggum
    May 12 at 18:37












  • @EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

    – Solomon Rutzky
    May 12 at 19:44











  • @EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

    – Solomon Rutzky
    May 13 at 4:27











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "182"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f237860%2fwhat-are-the-ramifications-of-setting-arithabort-on-for-all-connections-in-sql-s%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









10














There are some defaults that exist merely because nobody really knows what the effect of changing them would be. For example, the default instance-level collation when installing on a system that uses "US English" as the OS language is SQL_Latin1_General_CP1_CI_AS. This makes no sense since the SQL_* collations are for pre-SQL Server 2000 compatibility. Starting in SQL Server 2000 you could actually choose a Windows collation, and so the default for US English systems should have been changed to Latin1_General_CI_AS. BUT, I guess nobody at Microsoft really knows what the impact will be to all of the various potential sub-systems and system stored procedures, etc.



So, I am not aware of any specific negative impact of setting it to ON as either a database default or even instance-wide. At the same time, I have not tested it. But even if I had tested it, I might still not use the same code paths as your application, so this is something that you really need to test in your environment. Set it to ON at the instance level in your Dev and QA environments and see how that works for a month or two. Then enable it in Staging / UAT. If all continues to go well for several weeks, roll that config change to Production. The key is to give as much time as possible for testing various code paths that are not hit daily. Some are hit weekly or months or annually. Some code paths are only hit by support, or some ad hoc report or maintenance proc that someone created years ago and never told you about and only gets used at random intervals (nah, that never happens ;-).



So, I did some testing on an instance that still has the default "user options" setting as I have never changed it.



Please note:




  • @@OPTIONS / 'user options' is a bitmasked value

  • 64 is the bit for ARITHABORT ON

SETUP



I tested with both SQLCMD (which uses ODBC) and LINQPad (which uses .NET SqlClient):



SQLCMD -W -S (local) ^
-Q"SELECT CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')') FROM sys.dm_exec_sessions ses WHERE ses.[session_id] = @@SPID;"
echo .


(the ^ is the DOS line continuation character; the . on the last line is just to force the extra line to make it easier to copy-and-paste)



In LINQPad:



using (SqlConnection connection =
new SqlConnection(@"Server=(local);Trusted_Connection=true;Database=tempdb;"))

using (SqlCommand command = connection.CreateCommand())

command.CommandText = @"SELECT @RetVal =
CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')')
FROM sys.dm_exec_sessions ses
WHERE ses.[session_id] = @@SPID;";
SqlParameter paramRetVal = new SqlParameter("@RetVal", SqlDbType.NVarChar, 500);
paramRetVal.Direction = ParameterDirection.Output;
command.Parameters.Add(paramRetVal);

connection.Open();
command.ExecuteNonQuery();

Console.WriteLine(paramRetVal.Value.ToString());




TEST 1: Before



SQLCMD returns:



master: 0 (ODBC)


LINQPad returns:



tempdb: 0 (.Net SqlClient Data Provider)


CHANGE DEFAULT CONNECTION OPTION:



The following T-SQL enables ARITHABORT without removing any other options that might be set, and without changing anything if ARITHABORT is already set in the bitmasked value.



DECLARE @UserOptions INT;

-- Get current bitmasked value and ensure ARITHABORT is enabled:
SELECT @UserOptions = CONVERT(INT, cnf.[value_in_use]) | 64 -- enable "ARITHABORT"
FROM sys.configurations cnf
WHERE cnf.[configuration_id] = 1534 -- user options

-- Apply new default connection options:
EXEC sys.sp_configure N'user options', @UserOptions;
RECONFIGURE;


TEST 2: After



SQLCMD returns:



master: 64 (ODBC)


LINQPad returns:



tempdb: 64 (.Net SqlClient Data Provider)


Conclusion



Given that:



  1. There does not seem to be any benefit to having ARITHABORT OFF

  2. There is benefit to having ARITHABORT ON

  3. The default connection setting (unless overridden by the connection) = OFF

  4. It does not appear that either ODBC or OLEDB / .NET SqlClient attempt to set ARITHABORT, thus they accept the default setting

I would suggest changing the instance-wide default connection options (as shown above). This would be less obtrusive than updating the application. I would only update the app if you find a problem with changing the instance-wide setting.



P.S. I did a simple test with changing tempdb and not changing the instance-wide setting and it did not seem to work.






share|improve this answer




















  • 1





    Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

    – Eric Swiggum
    May 12 at 4:35











  • @EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

    – Solomon Rutzky
    May 12 at 16:46






  • 1





    I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

    – Eric Swiggum
    May 12 at 18:37












  • @EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

    – Solomon Rutzky
    May 12 at 19:44











  • @EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

    – Solomon Rutzky
    May 13 at 4:27















10














There are some defaults that exist merely because nobody really knows what the effect of changing them would be. For example, the default instance-level collation when installing on a system that uses "US English" as the OS language is SQL_Latin1_General_CP1_CI_AS. This makes no sense since the SQL_* collations are for pre-SQL Server 2000 compatibility. Starting in SQL Server 2000 you could actually choose a Windows collation, and so the default for US English systems should have been changed to Latin1_General_CI_AS. BUT, I guess nobody at Microsoft really knows what the impact will be to all of the various potential sub-systems and system stored procedures, etc.



So, I am not aware of any specific negative impact of setting it to ON as either a database default or even instance-wide. At the same time, I have not tested it. But even if I had tested it, I might still not use the same code paths as your application, so this is something that you really need to test in your environment. Set it to ON at the instance level in your Dev and QA environments and see how that works for a month or two. Then enable it in Staging / UAT. If all continues to go well for several weeks, roll that config change to Production. The key is to give as much time as possible for testing various code paths that are not hit daily. Some are hit weekly or months or annually. Some code paths are only hit by support, or some ad hoc report or maintenance proc that someone created years ago and never told you about and only gets used at random intervals (nah, that never happens ;-).



So, I did some testing on an instance that still has the default "user options" setting as I have never changed it.



Please note:




  • @@OPTIONS / 'user options' is a bitmasked value

  • 64 is the bit for ARITHABORT ON

SETUP



I tested with both SQLCMD (which uses ODBC) and LINQPad (which uses .NET SqlClient):



SQLCMD -W -S (local) ^
-Q"SELECT CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')') FROM sys.dm_exec_sessions ses WHERE ses.[session_id] = @@SPID;"
echo .


(the ^ is the DOS line continuation character; the . on the last line is just to force the extra line to make it easier to copy-and-paste)



In LINQPad:



using (SqlConnection connection =
new SqlConnection(@"Server=(local);Trusted_Connection=true;Database=tempdb;"))

using (SqlCommand command = connection.CreateCommand())

command.CommandText = @"SELECT @RetVal =
CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')')
FROM sys.dm_exec_sessions ses
WHERE ses.[session_id] = @@SPID;";
SqlParameter paramRetVal = new SqlParameter("@RetVal", SqlDbType.NVarChar, 500);
paramRetVal.Direction = ParameterDirection.Output;
command.Parameters.Add(paramRetVal);

connection.Open();
command.ExecuteNonQuery();

Console.WriteLine(paramRetVal.Value.ToString());




TEST 1: Before



SQLCMD returns:



master: 0 (ODBC)


LINQPad returns:



tempdb: 0 (.Net SqlClient Data Provider)


CHANGE DEFAULT CONNECTION OPTION:



The following T-SQL enables ARITHABORT without removing any other options that might be set, and without changing anything if ARITHABORT is already set in the bitmasked value.



DECLARE @UserOptions INT;

-- Get current bitmasked value and ensure ARITHABORT is enabled:
SELECT @UserOptions = CONVERT(INT, cnf.[value_in_use]) | 64 -- enable "ARITHABORT"
FROM sys.configurations cnf
WHERE cnf.[configuration_id] = 1534 -- user options

-- Apply new default connection options:
EXEC sys.sp_configure N'user options', @UserOptions;
RECONFIGURE;


TEST 2: After



SQLCMD returns:



master: 64 (ODBC)


LINQPad returns:



tempdb: 64 (.Net SqlClient Data Provider)


Conclusion



Given that:



  1. There does not seem to be any benefit to having ARITHABORT OFF

  2. There is benefit to having ARITHABORT ON

  3. The default connection setting (unless overridden by the connection) = OFF

  4. It does not appear that either ODBC or OLEDB / .NET SqlClient attempt to set ARITHABORT, thus they accept the default setting

I would suggest changing the instance-wide default connection options (as shown above). This would be less obtrusive than updating the application. I would only update the app if you find a problem with changing the instance-wide setting.



P.S. I did a simple test with changing tempdb and not changing the instance-wide setting and it did not seem to work.






share|improve this answer




















  • 1





    Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

    – Eric Swiggum
    May 12 at 4:35











  • @EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

    – Solomon Rutzky
    May 12 at 16:46






  • 1





    I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

    – Eric Swiggum
    May 12 at 18:37












  • @EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

    – Solomon Rutzky
    May 12 at 19:44











  • @EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

    – Solomon Rutzky
    May 13 at 4:27













10












10








10







There are some defaults that exist merely because nobody really knows what the effect of changing them would be. For example, the default instance-level collation when installing on a system that uses "US English" as the OS language is SQL_Latin1_General_CP1_CI_AS. This makes no sense since the SQL_* collations are for pre-SQL Server 2000 compatibility. Starting in SQL Server 2000 you could actually choose a Windows collation, and so the default for US English systems should have been changed to Latin1_General_CI_AS. BUT, I guess nobody at Microsoft really knows what the impact will be to all of the various potential sub-systems and system stored procedures, etc.



So, I am not aware of any specific negative impact of setting it to ON as either a database default or even instance-wide. At the same time, I have not tested it. But even if I had tested it, I might still not use the same code paths as your application, so this is something that you really need to test in your environment. Set it to ON at the instance level in your Dev and QA environments and see how that works for a month or two. Then enable it in Staging / UAT. If all continues to go well for several weeks, roll that config change to Production. The key is to give as much time as possible for testing various code paths that are not hit daily. Some are hit weekly or months or annually. Some code paths are only hit by support, or some ad hoc report or maintenance proc that someone created years ago and never told you about and only gets used at random intervals (nah, that never happens ;-).



So, I did some testing on an instance that still has the default "user options" setting as I have never changed it.



Please note:




  • @@OPTIONS / 'user options' is a bitmasked value

  • 64 is the bit for ARITHABORT ON

SETUP



I tested with both SQLCMD (which uses ODBC) and LINQPad (which uses .NET SqlClient):



SQLCMD -W -S (local) ^
-Q"SELECT CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')') FROM sys.dm_exec_sessions ses WHERE ses.[session_id] = @@SPID;"
echo .


(the ^ is the DOS line continuation character; the . on the last line is just to force the extra line to make it easier to copy-and-paste)



In LINQPad:



using (SqlConnection connection =
new SqlConnection(@"Server=(local);Trusted_Connection=true;Database=tempdb;"))

using (SqlCommand command = connection.CreateCommand())

command.CommandText = @"SELECT @RetVal =
CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')')
FROM sys.dm_exec_sessions ses
WHERE ses.[session_id] = @@SPID;";
SqlParameter paramRetVal = new SqlParameter("@RetVal", SqlDbType.NVarChar, 500);
paramRetVal.Direction = ParameterDirection.Output;
command.Parameters.Add(paramRetVal);

connection.Open();
command.ExecuteNonQuery();

Console.WriteLine(paramRetVal.Value.ToString());




TEST 1: Before



SQLCMD returns:



master: 0 (ODBC)


LINQPad returns:



tempdb: 0 (.Net SqlClient Data Provider)


CHANGE DEFAULT CONNECTION OPTION:



The following T-SQL enables ARITHABORT without removing any other options that might be set, and without changing anything if ARITHABORT is already set in the bitmasked value.



DECLARE @UserOptions INT;

-- Get current bitmasked value and ensure ARITHABORT is enabled:
SELECT @UserOptions = CONVERT(INT, cnf.[value_in_use]) | 64 -- enable "ARITHABORT"
FROM sys.configurations cnf
WHERE cnf.[configuration_id] = 1534 -- user options

-- Apply new default connection options:
EXEC sys.sp_configure N'user options', @UserOptions;
RECONFIGURE;


TEST 2: After



SQLCMD returns:



master: 64 (ODBC)


LINQPad returns:



tempdb: 64 (.Net SqlClient Data Provider)


Conclusion



Given that:



  1. There does not seem to be any benefit to having ARITHABORT OFF

  2. There is benefit to having ARITHABORT ON

  3. The default connection setting (unless overridden by the connection) = OFF

  4. It does not appear that either ODBC or OLEDB / .NET SqlClient attempt to set ARITHABORT, thus they accept the default setting

I would suggest changing the instance-wide default connection options (as shown above). This would be less obtrusive than updating the application. I would only update the app if you find a problem with changing the instance-wide setting.



P.S. I did a simple test with changing tempdb and not changing the instance-wide setting and it did not seem to work.






share|improve this answer















There are some defaults that exist merely because nobody really knows what the effect of changing them would be. For example, the default instance-level collation when installing on a system that uses "US English" as the OS language is SQL_Latin1_General_CP1_CI_AS. This makes no sense since the SQL_* collations are for pre-SQL Server 2000 compatibility. Starting in SQL Server 2000 you could actually choose a Windows collation, and so the default for US English systems should have been changed to Latin1_General_CI_AS. BUT, I guess nobody at Microsoft really knows what the impact will be to all of the various potential sub-systems and system stored procedures, etc.



So, I am not aware of any specific negative impact of setting it to ON as either a database default or even instance-wide. At the same time, I have not tested it. But even if I had tested it, I might still not use the same code paths as your application, so this is something that you really need to test in your environment. Set it to ON at the instance level in your Dev and QA environments and see how that works for a month or two. Then enable it in Staging / UAT. If all continues to go well for several weeks, roll that config change to Production. The key is to give as much time as possible for testing various code paths that are not hit daily. Some are hit weekly or months or annually. Some code paths are only hit by support, or some ad hoc report or maintenance proc that someone created years ago and never told you about and only gets used at random intervals (nah, that never happens ;-).



So, I did some testing on an instance that still has the default "user options" setting as I have never changed it.



Please note:




  • @@OPTIONS / 'user options' is a bitmasked value

  • 64 is the bit for ARITHABORT ON

SETUP



I tested with both SQLCMD (which uses ODBC) and LINQPad (which uses .NET SqlClient):



SQLCMD -W -S (local) ^
-Q"SELECT CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')') FROM sys.dm_exec_sessions ses WHERE ses.[session_id] = @@SPID;"
echo .


(the ^ is the DOS line continuation character; the . on the last line is just to force the extra line to make it easier to copy-and-paste)



In LINQPad:



using (SqlConnection connection =
new SqlConnection(@"Server=(local);Trusted_Connection=true;Database=tempdb;"))

using (SqlCommand command = connection.CreateCommand())

command.CommandText = @"SELECT @RetVal =
CONCAT(DB_NAME(), N': ', @@OPTIONS & 64, N' (', ses.[client_interface_name], N')')
FROM sys.dm_exec_sessions ses
WHERE ses.[session_id] = @@SPID;";
SqlParameter paramRetVal = new SqlParameter("@RetVal", SqlDbType.NVarChar, 500);
paramRetVal.Direction = ParameterDirection.Output;
command.Parameters.Add(paramRetVal);

connection.Open();
command.ExecuteNonQuery();

Console.WriteLine(paramRetVal.Value.ToString());




TEST 1: Before



SQLCMD returns:



master: 0 (ODBC)


LINQPad returns:



tempdb: 0 (.Net SqlClient Data Provider)


CHANGE DEFAULT CONNECTION OPTION:



The following T-SQL enables ARITHABORT without removing any other options that might be set, and without changing anything if ARITHABORT is already set in the bitmasked value.



DECLARE @UserOptions INT;

-- Get current bitmasked value and ensure ARITHABORT is enabled:
SELECT @UserOptions = CONVERT(INT, cnf.[value_in_use]) | 64 -- enable "ARITHABORT"
FROM sys.configurations cnf
WHERE cnf.[configuration_id] = 1534 -- user options

-- Apply new default connection options:
EXEC sys.sp_configure N'user options', @UserOptions;
RECONFIGURE;


TEST 2: After



SQLCMD returns:



master: 64 (ODBC)


LINQPad returns:



tempdb: 64 (.Net SqlClient Data Provider)


Conclusion



Given that:



  1. There does not seem to be any benefit to having ARITHABORT OFF

  2. There is benefit to having ARITHABORT ON

  3. The default connection setting (unless overridden by the connection) = OFF

  4. It does not appear that either ODBC or OLEDB / .NET SqlClient attempt to set ARITHABORT, thus they accept the default setting

I would suggest changing the instance-wide default connection options (as shown above). This would be less obtrusive than updating the application. I would only update the app if you find a problem with changing the instance-wide setting.



P.S. I did a simple test with changing tempdb and not changing the instance-wide setting and it did not seem to work.







share|improve this answer














share|improve this answer



share|improve this answer








edited May 12 at 16:40

























answered May 10 at 18:24









Solomon RutzkySolomon Rutzky

50.9k590188




50.9k590188







  • 1





    Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

    – Eric Swiggum
    May 12 at 4:35











  • @EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

    – Solomon Rutzky
    May 12 at 16:46






  • 1





    I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

    – Eric Swiggum
    May 12 at 18:37












  • @EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

    – Solomon Rutzky
    May 12 at 19:44











  • @EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

    – Solomon Rutzky
    May 13 at 4:27












  • 1





    Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

    – Eric Swiggum
    May 12 at 4:35











  • @EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

    – Solomon Rutzky
    May 12 at 16:46






  • 1





    I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

    – Eric Swiggum
    May 12 at 18:37












  • @EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

    – Solomon Rutzky
    May 12 at 19:44











  • @EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

    – Solomon Rutzky
    May 13 at 4:27







1




1





Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

– Eric Swiggum
May 12 at 4:35





Huh, after reading this Q&A with Paul White on the subject, it appears that passing SET ANSI_WARNINGS ON, implicitly sets ARITHABORT to ON. HOWEVER, if SET ARITHABORT OFF is also passed in the connection, even with ANSI_WARNINGS overriding it, SQL server will still "act" like ARITHABORT is OFF, as in choosing strange plans. I find this... mind-boggling. So without a doubt, this needs to be set in the connection AND SET ARITHABORT OFF can't even exist. Case closed in my eyes... sqlservercentral.com/forums/topic/…

– Eric Swiggum
May 12 at 4:35













@EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

– Solomon Rutzky
May 12 at 16:46





@EricSwiggum Interesting thread you found. However, I don't see how you conclude from that info that it needs to be set in the connection. If nothing is currently overriding it, then we know that SET ARITHABORT OFF is not present. So why worry about it being present? the only instance we have seen where the default is overridden is SSMS setting it to ON (which is a good thing). Either way, I have updated my answer with testing and what I see as the most logical recommendation (per existing info).

– Solomon Rutzky
May 12 at 16:46




1




1





I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

– Eric Swiggum
May 12 at 18:37






I agree, enable the instance-wide setting as default. But ultimately the connection controls what is set. What about the case of shared instances where various technologies/protocols are connecting to SQL? I mean, do I have to run around and yell "SET ARITHABORT ON" to development like a mad man? or at the very least, promote the absence of ARITHABORT OFF if possible.. I also find it odd that I haven't seen this come to a head till now, my 6th year as a full-time DBA. or maybe it is a case where I haven't looked into it hard enough. Back me up Paul or Erland, LOL, what's up with this?

– Eric Swiggum
May 12 at 18:37














@EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

– Solomon Rutzky
May 12 at 19:44





@EricSwiggum 1) You wouldn't need to run around yelling anything if you change the instance-level default. 2) You would only need to promote the absence of ARITHABORT OFF if you find any actual incidences of it. So far there are likely none. 3) Since this affects query plans, it could be that the tables never had enough data to cause SQL Server to have certain choices to consider, where now there are more choices, and some are bad. Or perhaps there are other transient factors, such as out of date stats, etc. Not entirely sure.

– Solomon Rutzky
May 12 at 19:44













@EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

– Solomon Rutzky
May 13 at 4:27





@EricSwiggum I'm not disagreeing with you there. I think this is very similar to what I mentioned at the start of my answer (i.e. the default collation for US English systems): Microsoft's fear of legacy systems getting errors upon upgrading (i.e. backwards compatibility guarantee) does more harm than good as it actually increases the install-base / scope of the non-ideal scenario. This makes it an ever increasing pull to remain in the past, and an ever-decreasing chance of things getting better. These are cases where it's better to rip the band-aid off and just get the pain over with now.

– Solomon Rutzky
May 13 at 4:27

















draft saved

draft discarded
















































Thanks for contributing an answer to Database Administrators Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f237860%2fwhat-are-the-ramifications-of-setting-arithabort-on-for-all-connections-in-sql-s%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company