Answer Posted / bhaskar
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
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what kind of lan types do you know? : Sql server database administration
What is sql or structured query language?
Does an index slow down updates on indexed columns?
How to add a new column to an existing table with "alter table ... Add" in ms sql server?
Do you know what are pages and extents? : SQL Server Architecture
what is the difference between delete table and truncate table commands? : Sql server database administration
How global temporary tables are represented and its scope?
What is in place upgrade in sql server?
Difference between Logical Page and Physical Page in SSRS.
How to invoke a trigger on demand?
What does null mean?
What is exporting utility?
what is a traditional network library for sql servers? : Sql server database administration
How to list all stored procedures in the current database using ms sql server?
What is the difference between a stored procedure and a user defined function?