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
How can we determine what objects a user-defined function depends upon?
What are the instances when triggers are appropriate?
What is a sql join?
What is save transaction and save point?
Explain triggers?
Differentiate between sql temp table vs table variable?
Explain about unique identifier data type in sql server?
What are xml indexes?
Tell about MOM Tool(Microsoft Operator Manager)?
what are acid properties? : Sql server database administration
What does the update command do?
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 is Command line parameters in PLSQL.?
What are data regions?
Write an sql query for deleting duplicate rows?