이제 제법 SQL Server의 버전이 다양해 진거 같네요... 2005가 나왔을때만 해도 2000에 비해서 한층 강화된 보안 기능으로 어려움이 있었는데, 이제는 MSSQL 2008도 현업에서 나오네요.
방법은 MSSQL2005와 동일하네요..
방법은 MSSQL2005와 동일하네요..
-- 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