Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created April 6, 2017 14:32
Show Gist options
  • Select an option

  • Save mattmc3/04eeb50c845ff0e1bc026ea181b0db52 to your computer and use it in GitHub Desktop.

Select an option

Save mattmc3/04eeb50c845ff0e1bc026ea181b0db52 to your computer and use it in GitHub Desktop.
MSSQL - enable OLE
exec sp_configure 'show advanced options',1;
go
reconfigure;
go
sp_configure 'Ole Automation Procedures', 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