|
If xp_cmdshell is not enabled, and you have sufficient rights it can be enabled with the following script.
sp_configure 'show advanced options', 1; GO RECONFIGURE; go sp_configure 'xp_cmdshell',1; go RECONFIGURE; go
It can also be disabled with the following:
sp_configure 'show advanced options', 1; GO RECONFIGURE; go sp_configure 'xp_cmdshell',0; go RECONFIGURE; go
|
11 August 2008 IB
SQL Server
|
Back To List
Did this article answer your question |
 |
Yes |
 |
No |
|
Other items of interest in our knowledgebase
|