Enable xp_cmdshell in SQl 2008
If you need to call xp_cmdshell you need to allow it; this script enables it.
EXEC sp_configure ‘show advanced options’, 1
GO
RECONFIGURE
GO
EXEC sp_configure ‘xp_cmdshell’, 1
GO
RECONFIGURE
GO
-
rebeoen liked this
-
sqlscripts posted this