无法在 SQL Server Express 中 运行 cmdshell @command

Can not run cmdshell @command in SQL Server Express

我无法在 SQL Server Express 中 运行 cmdshell @command 命令。是不是和SQL服务器版本有关?我是否必须像 SQL 服务器标准版一样才能使用 运行 这个命令?

按照描述启用它in the Microsoft article:

-- 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  

这是一个权限问题,现已修复!谢谢大家的帮助!