구성 요소 'Ole Automation Procedures'이(가) SQL Server 보안 구성의 일부로 해제되었으므로 이 구성 요소의 프로시저 'sys.sp_OACreate'에 대한 액세스가 차단되었습니다. 시스템 관리자는 sp_configure를 통해 'Ole Automation Procedures'을(를) 활성화할 수 있습니다. 'Ole Automation Procedures' 활성화에 대한 자세한 내용을 보려면 SQL Server 온라인 설명서에서 'Ole Automation Procedures'을(를) 검색하십시오.

해결방법

1 답변

0 투표
sp_configure 'show advanced options', 1; 
GO

sp_configure 'Ole Automation Procedures', 1; 
GO 

RECONFIGURE; 
GO

고급옵션 비활성화

sp_configure 'show advanced options', 0; 
GO 
--> 구성 옵션 'show advanced options'이(가) 1에서 0(으)로 변경되었습니다. RECONFIGURE 문을 실행하여 설치하십시오.
RECONFIGURE; 
GO
--> 명령이 완료되었습니다.

Ole Automation Procedures 비활성화

-- Disable the Ole Automation Procedures 
sp_configure 'Ole Automation Procedures', 0; 
GO 
--> 구성 옵션 'Ole Automation Procedures'이(가) 1에서 0(으)로 변경되었습니다. RECONFIGURE 문을 실행하여 설치하십시오.
RECONFIGURE; 
GO
--> 명령이 완료되었습니다.

add
...