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