SMO and DMO XPs Option

Use the SMO and DMO XPsoption to enable SQL Server Management Object (SMO) and SQL Distributed Management Object (SQL-DMO) extended stored procedures on this server.

The possible values are described in the following table:

Value

Meaning

0

SMO and SQL-DMO XPs are not available.

1

SMO and SQL-DMO XPs are available. This is the default.

The setting takes effect immediately.

Examples

The following example enables the SMO and DMO extended stored procedures.

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'SMO and DMO XPs', 1;
GO
RECONFIGURE
GO