Explain what are db_options used for?

Answer Posted / ravi raj chelluri

Displays or changes database options, and enables the
asynchronous log service feature.

Syntax
sp_dboption [dbname, optname, optvalue [, dockpt]]


Examples:

1) Displays a list of the database options

sp_dboption


2)Allows select into, bcp and parallel sort operations on
tables in the advanturewors database

use Advantureworks
go
master..sp_dboption Advantureworks, "select into", true
go

Is This Answer Correct ?    3 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is database replication? What are the different types of replication you can set up in sql server?

708


how to create a scrollable cursor with the scroll option? : Sql server database administration

826


What is 'write-ahead log' in sql server 2000 ?

829


What are approximate numeric data types in ms sql server?

814


What is the usage of the sign function?

755


What are the basic functions for master, msdb, model, tempdb and resource databases? : SQL Server Architecture

788


Explain data warehousing in sql server?

818


How to delete multiple rows with one delete statement in ms sql server?

746


Tell me what is normalization? Explain different forms of normalization?

820


Explain about remote stored procedure?

818


How to delete existing rows in a table?

835


How many cores do I need for sql server 2016?

705


You have a table with close to 100 million records recently, a huge amount of this data was updated now, various queries against this table have slowed down considerably what is the quickest option to remedy the situation?

715


how will add additional conditions in sql?

787


Describe the functionalities that views support.

884