맞춤검색
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
다음과 같이 활성화 합니다.
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

이올린에 북마크하기
Prev
Rss Feed