Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

SQL Server blockiert den Zugriff auf die Prozedur „sys.sp_OACreate“ der Komponente „Ole Automation Procedures“

Das folgende Beispiel zeigt, wie die aktuelle Einstellung von OLE-Automatisierungsprozeduren angezeigt wird.

EXEC sp_configure 'Ole Automation Procedures';
GO

Das folgende Beispiel zeigt, wie OLE-Automatisierungsprozeduren aktiviert werden.

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1;
GO
RECONFIGURE;
GO