Answer Posted / bhasskar
sp_configure :
The xp_cmdshell option is a server configuration option
that enables system administrators to control whether the
xp_cmdshell extended stored procedure can be executed on a
system.
—- To allow advanced options to be changed.
EXEC sp_configure ’show advanced options’, 1
GO
—- To update the currently configured value for advanced
options.
RECONFIGURE
GO
—- To enable the feature.
EXEC sp_configure ‘xp_cmdshell’, 1
GO
—- To update the currently configured value for this
feature.
RECONFIGURE
GO
SET:
This command is used to set the values to the variables
ex:
declare @id int
set @id=2
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
State a few properties of relational databases?
How can sql server instances be hidden? : sql server security
What changes in the front end code is needed if mirroring is implemented for the high availability? : sql server database administration
What is sql server 2000 work load governor?
What is 3nf normalization form?
What is a cube? : sql server analysis services, ssas
What is the usage of sign function?
How to return the second 5 rows in ms sql server?
How to convert a table data in XML format in sql server?
What purpose does the model database server?
What do mean by xml datatype?
Explain logical operators in sql server?
Explain transaction server auto commit?
Can you explain how long are locks retained within the repeatable_read and serializable isolation levels, during a read operation with row-level locking?
How to Sync Two SQL Azure Databases?