Explain what are db_options used for?
Answer / 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 |
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 are approximate numeric data types in ms sql server?
What are the different ways of moving data/databases between servers and databases in SQL Server?
Introduction of rollup clause using sum and group by clause?
Is it possible to replicate data from sql server to oracle? : sql server replication
What is recompile sql server?
on line cluster can we make if yes tell me the procedure
what is performance tunning in sql server ? explain.
What is buffer cash and log cache in sql server?
Why functions are used in sql server?
What are constraints in microsoft sql server?
What are sub-queries? Give example? In which case sub-queries are not feasible?