Forrest Gump
生命就像那空中白色的羽毛,或迎风搏击,或随风飘荡,或翱翔蓝天,或堕入深渊……

-- 允许配置高级选项
EXEC sp_configure 'show advanced options'1
GO
-- 重新配置
RECONFIGURE
GO
-- 启用xp_cmdshell
EXEC sp_configure 'xp_cmdshell'1
GO
--重新配置
RECONFIGURE
GO

--执行想要的xp_cmdshell语句
EXEC xp_cmdshell 'dtexec /f C:\test.dtsx '
GO

--用完后,要记得将xp_cmdshell禁用(出于安全考虑)
--
 允许配置高级选项
EXEC sp_configure 'show advanced options'1
GO
-- 重新配置
RECONFIGURE
GO
-- 禁用xp_cmdshell
EXEC sp_configure 'xp_cmdshell'0
GO
--重新配置
RECONFIGURE
GO
posted on 2009-06-11 15:38  张亦驰‏  阅读(514)  评论(0编辑  收藏  举报