sp_configure and Ole Automation Procedures
I needed to allow access to file create and delete to a specific user in sql server 2008. This advanced option is now disabled by default.
To enable:
sp_configure ‘show advanced options’, 1;
GO
RECONFIGURE;
GO
sp_configure ‘Ole Automation Procedures’, 1;
GO
RECONFIGURE;
GO
Trackback URI |