MS SQL 2005 부터는 xp_cmdshell를 오픈할 수 있는 방법이 변경되었습니다.
1. SQL2005 하에서 'xp_cmdshell' Open하는 방법 :
> sp_configure 'show advanced options', 1;
go
RECONFIGURE;
go
> sp_configure 'xp_cmdshell', 1;
go
RECONFIGURE;
go
2. SQL2005 에서 'OPENROWSET' 오픈하는 방법:
> sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
> sp_configure 'Ad Hoc Distributed Queries', 1;
GO
RECONFIGURE;
GO