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 is the usage of sign function?
How to create a simple stored procedure in ms sql server?
Is it ok to shrink transaction log?
What is query optimizer in sql server?
Explain features of analysis services?
What is data source document?
What is a database in ms sql server?
Explain “@@rowcount” and “@@error” in sql server?
What are the database objects? : SQL Server Architecture
Suppose i have a table that contains 5 columns like col1,col2...colm5.I want to import only two column through BCP utility.How to do same through BCP in sybase.
What is meant by dirty read?
What is implicit mode in sql server?
What are the advantages to use stored procedures?
What is the cpu pressure?
how you can configure a running aggregate in SSRS?