Skip to content

Instantly share code, notes, and snippets.

@derekmurawsky
Created December 2, 2013 15:31
Show Gist options
  • Save derekmurawsky/7751196 to your computer and use it in GitHub Desktop.
Save derekmurawsky/7751196 to your computer and use it in GitHub Desktop.
Enable CLR in MSSQL
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment