作者:手机用户2602883667 | 来源:互联网 | 2023-05-18 21:05
--sqlserver中开启xp_cmdshell命令1、--允许配置高级选项EXECsp_configureshowadvancedoptions,1GORECONFIGUREGO2
--sql server中开启xp_cmdshell命令
1、
--允许配置高级选项
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
2、
--开启xp_cmdshell服务
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE
GO
3、
--使用 xp_cmdshell
master..xp_cmdshell 'copy e:\databasebackup\test.bak m:'
4、
-- 允许配置高级选项
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
-- 禁用xp_cmdshell
EXEC sp_configure 'xp_cmdshell', 0
GO
RECONFIGURE
GO