无法在sql server上执行CMDSHELL代码

时间:2017-01-27 07:48:49

标签: sql-server tsql cmd sql-server-2014

我已经尝试了所有可能的方法来在SQL服务器上执行下面显示的代码。我仍然没有结果。

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:0)

必须打开Cmd shell:

-- To allow advanced options to be changed.  
EXEC sp_configure 'show advanced options', 1;  
GO  
-- To update the currently configured value for advanced options.  
RECONFIGURE;  
GO  
-- To enable the feature.  
EXEC sp_configure 'xp_cmdshell', 1;  
GO  
-- To update the currently configured value for this feature.  
RECONFIGURE;  
GO  

请参阅此link

答案 1 :(得分:0)

SQL Server启动服务正在哪个用户运行?它是否可以访问特定文件夹?