Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created April 6, 2017 14:31
Show Gist options
  • Save mattmc3/34358089f3b0dee1c44e85318d2381b0 to your computer and use it in GitHub Desktop.
Save mattmc3/34358089f3b0dee1c44e85318d2381b0 to your computer and use it in GitHub Desktop.
MSSQL - Enable CLR
exec sp_configure 'show advanced options', 1;
go
reconfigure;
go
sp_configure 'clr enabled', 1;
go
reconfigure;
go
sp_configure 'show advanced options', 0;
go
reconfigure;
go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment