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
What are the advantages of using stored procedures?
can a database be shrunk with users active? : Sql server administration
When is update_statistics command used?
Explain about SQLOS?
What is resultset concur_updatable?
How do you create a clustered index?
What is wrong with sql server client libarary dll, ntwdblib.dll?
Hi all, can any one please tell me the difference between sql server 2008 and orace 9i
What is Cross Join and in which scenario do we use Cross Join?
Describe the left outer join & right outer join. : sql server database administration
What is the temp table?
What is create command?
what are the core components of SSRS?
How to concatenate two strings in SQL Server.
What is user-defined multi-statement table-valued function?