write the query for taking database backup in sql
Answer Posted / madhu
BACKUP DATABASE
[db_SourceDbName] --SOURCE DB
TO DISK = N'\\192.168..124\db_TragetDbName.BAK' -- LOCATION
FILE NAME
WITH
NOFORMAT,
NOINIT,
NAME = N'myDbFull Backu[p-Full Database Backup',
SKIP,
NOREWIND,
NOUNLOAD,
STATS = 10
GO
| Is This Answer Correct ? | 36 Yes | 21 No |
Post New Answer View All Answers
Tell me about the approaches which you used to counter the DI problems.
What are the advantages of using a stored procedure?
What is attribute hierarchy? : sql server analysis services, ssas
What is the difference between ROW_NUMBER and Ranking function in SQL SERVER?
What is tablix?
What are the database objects? : SQL Server Architecture
How to create a Master database in SQL server ?
What are the system database in sql server 2005?
why would you use sql agent? : Sql server database administration
What is mean by candidate key?
Suppose we have a table "MyTable" containing 10 rows, what query should be executed to update the odd rows "Salary" as 9000?
What is the web service used for reporting services?
How do we know if any query is retrieving a large amount of data or very little data?
How do I install only the client tools of sql server 2000?
How to scale out a federation by Sql statement?