Skip to content

Instantly share code, notes, and snippets.

View egbutter's full-sized avatar

egbutter egbutter

View GitHub Profile

Keybase proof

I hereby claim:

  • I am egbuttter on github.
  • I am egbutter (https://keybase.io/egbutter) on keybase.
  • I have a public key whose fingerprint is 2DF4 11FE DB9E D590 ED15 A4E5 32F6 8174 F7CF 2187

To claim this, I am signing this object:

@egbutter
egbutter / arithabort.sql
Last active August 29, 2015 14:27
Simple example of arithabort being turned off on sql server
USE [master]
GO
CREATE DATABASE [TestDb]
GO
ALTER DATABASE [TestDb] SET COMPATIBILITY_LEVEL = 90
GO
ALTER DATABASE [TestDb] SET ANSI_WARNINGS OFF
GO