/*MSsql2005 如何啟用xp_cmdshell 默認(rèn)情況下,sql server2005安裝完后,xp_cmdshell是禁用的(可能是安全考慮),如果要使用它,可按以下步驟 */ -- 允許配置高級(jí)選項(xiàng) EXEC sp_configure 'show advanced options', 1 GO -- 重新配置 RECONFIGURE GO -- 啟用xp_cmdshell EXEC sp_configure 'xp_cmdshell', 1 GO --重新配置 RECONFIGURE GO EXEC master..xp_cmdshell 'bcp his.dbo.logasset_2017_06 in d:\logasset_2017_06.bcp -c -T' EXEC master..xp_cmdshell 'bcp his.dbo.logmateno_2017_06 in d:\logmateno_2017_06.bcp -c -T' --執(zhí)行想要的xp_cmdshell語(yǔ)句 Exec xp_cmdshell 'query user' GO --用完后,要記得將xp_cmdshell禁用(出于安全考慮) -- 允許配置高級(jí)選項(xiàng) EXEC sp_configure 'show advanced options', 1 GO -- 重新配置 RECONFIGURE GO -- 禁用xp_cmdshell EXEC sp_configure 'xp_cmdshell', 0 GO --重新配置 RECONFIGURE GO
|
|
來(lái)自: 昵稱55454825 > 《數(shù)據(jù)庫(kù)》