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
What are commonly used odbc functions in php?
Can you leave a union at any time?
How do I create a trace in sql server?
what is the system function to get the current user's user id? : Sql server database administration
Explain about remote stored procedure?
What are cursors and when they are useful?
How can you transfer data from a text file to a database table? Or how can you export data from a table to a comma delimited (csv) file? Or how can you import data from ms access to a table in a database? Or how can you export data from a table to an excel file?
What are character string data types in ms sql server?
You want to implement the one-to-many relationship while designing tables. How would you do it?
What is the difference between primary key and unique constraints?
Explain different types of lock modes in sql server 2000?
What is data source in connection string?
How to assign new column names in a view?
What is sql profiler. What are the default templates with it? : sql server database administration
Define right outer join in sql server joins?