2010/02/26 18:39

SQL 2005 xp_cmdshell 복구

크리에이티브 커먼즈 라이선스
Creative Commons License
SQL 2005 에서는 기본적으로 xp_cmdshell 이 비활성화 되어 있는 상태입니다.
다음과 같이 활성화 합니다.


use master
if object_id('xp_cmdshell')is null
exec sp_addextendedproc'xp_cmdshell','xplog70.dll'
go

exec sp_configure'show advanced options',1
reconfigure
go

exec sp_configure'xp_cmdshell',1
reconfigure
go
저작자 표시 비영리 변경 금지
Trackback 0 Comment 0