카테고리 없음
services Broker 활성화 & xp_cmdshell 활성화
ravon
2019. 8. 21. 15:54
alter database msdb
set enable_broker
with rollback immediate
go
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
GO