Search:     Advanced search
Browse by category:
C/C++   |   Java   |   Oracle/Database   |   SAP   |   ASP .NET   |   Mainframe-DB2   |   Freshers

What are sp_configure commands and set commands?

Add comment
Views: 51
Votes: 0
Comments: 0

Use sp_configure to display or change server-level settings. To change database-level settings, use ALTER DATABASE. To change settings that affect only the current user session, use the SET statement.

E.g.

sp_CONFIGURE ’show advanced’, 0
GO
RECONFIGURE
GO
sp_CONFIGURE
GO

You can run following command and check advance global configuration settings.

sp_CONFIGURE ’show advanced’, 1
GO
RECONFIGURE
GO
sp_CONFIGURE
GO
Others in this Category
document What is a table called, if it has neither Cluster nor Non-cluster Index? What is it used for?
document Q: Explain UNION,MINUS,UNION ALL, INTERSECT ?
document What command would you use to create a backup control file?
document How to find tables without Indexes?
document What is use of EXCEPT Clause?
document What are the advantages of using Stored Procedures?
document What is MERGE Statement?
document Q: What are logical databases? What are the advantages/disadvantages of logical databases?
document What is View?
document Q: What is the meaning of data definition name (ddname) and dataset name (dsname) in the DD statement?
» More articles



RSS