- Select the Master database.
USE Master
GO - Restore the latest full back up with REPLACE and RECOVERY option
RESTORE DATABASE RESTORE_COSTSHEET
FROM DISK = 'e:\backup_201007282300.bak'
WITH REPLACE,NORECOVERY; - Restore all deferential backups except last one
RESTORE DATABASE RESTORE_COSTSHEET
FROM DISK = 'e:\201006110800.incr'
WITH NORECOVERY; - Restoration of Last back up file should be like this.
RESTORE DATABASE RESTORE_COSTSHEET
FROM DISK = 'e:\201006111200.incr'
WITH RECOVERY;
Jul 29, 2010
Restoring Deferential backups in SQL Server (T-SQL)
In my previous post I demonstrated, how to restore deferential backups with SQL Management Studio. In this post, I'll show the same thing with T-SQL.
Subscribe to:
Post Comments (Atom)
MEC: How to Set Message Counter for EDI Message
When you sending/creating EDI messages it is necessary to include unique message interchange number. This is to ensure each message that we ...
-
In this post, I'm going to explain the step-by-step approach to configuring the popular development tool Postman to test/execute Inf...
-
You will find many posts/videos about this topic, but I intend to guide you step-by-step with more information to comprehend and also re...
-
It is a very common scenario to integrate/trigger your workflow with an external application. With the help of ION APIs, we can do this. ...
No comments:
Post a Comment