Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Use the SMO and DMO XPs option 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. This is the default. |
1 |
SMO and SQL-DMO XPs are available. |
The setting takes effect immediately without a server stop and restart.
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
See Also
Other Resources
SQL Distributed Management Objects (SQL-DMO)
SQL Server Management Objects (SMO)