Getting Started with Adobe After Effects - Part 6: Motion Blur


Upload Image Close it
Select File

Towards the innovative SQL ideas
Browse by Tags · View All
ms sql server 119
ms sql 118
sql server 116
sql 115
database 102
tsql 81
#SQL Server 78
t-sql 75
#sql 71
sql server general 67

Archive · View All
April 2011 14
July 2011 12
May 2011 12
August 2011 11
June 2011 10
September 2011 8
December 2011 6
November 2011 6
June 2013 5
April 2013 5

SQL Server - Restore Full Database Backup from SSMS

Jul 23 2011 12:11AM by Paresh Prajapati   

Everyone know about the database backup restoration. This is one need for every developer or DBA. I want to demonstrate here as we have a database backup and how can we restore it with Management Studio. Because somebody don't the database backup restoration process with TSQL script. So here is the same presentation of the database backup restoration with SSMS.

I also wrote for how to perform a database backup from SSMS. Please keep on eye on the shots below which will drive you step by step to achieve restoration completion.

1. First we need to right click on database instance and click on option Restore Database.



2. Here we have option to define a name of the database to be restored.


3. Now go on the From Device and click on right button and will appear small screen  were we can specify the backup.


4. After click on Add button as per above screen, we will have a selection the database backup which is going to be restored as below screen.



5. When you select the database backup and backup will appear in Specify Backup window. Now you need to click on Add button as explained in screen.



6. After adding a backup and with ok click the backupset will look as following. Select Restore option and go on the option tab.



7. On this option can change database data and log files physical location. Also it have options to leave database in NoRecovery, Recovery and Read-only mode. You have option to restore database on existing one also.




8. Yon can see the restoration progress.



9. Congratulation, You get the restoration successfully completed message.


Tags: mssql, thread affinity, WPF architecture, internals of WPF, WPF interview FAQ, dispatcher object,


Paresh Prajapati
6 · 22% · 7054
3
 
0
Lifesaver
 
0
Refreshed
 
0
Learned
 
0
Incorrect



Submit

2  Comments  

  • Can you please describe how to Restore differential Database Backup from SSMS ?

    commented on Aug 4 2011 12:14AM
    pinakee
    381 · 0% · 105
  • Hello pinakee,

    First you need to restore full database backup with norecovery mode which performd before differential , then you need to restore differential backup with recovery option. Like,

    -- FULL backup restoration:
    Restore database test from disk = 'c:\test_Full.bak'
    ,replace with
    move 'test_data' to 'c:\test_1.mdf',
    move 'test_Log' to 'c:\test_2.ldf',
    NORECOVERY
    
    -- DIFF backup restoration:
    Restore database test from disk = 'c:\test_Diff.bak'
    WITH NORECOVERY
    
    -- Recover
    Restore database test WITH RECOVERY
    
    commented on Aug 4 2011 5:10AM
    Paresh Prajapati
    6 · 22% · 7054

Your Comment


Sign Up or Login to post a comment.

"SQL Server - Restore Full Database Backup from SSMS" rated 5 out of 5 by 3 readers
SQL Server - Restore Full Database Backup from SSMS , 5.0 out of 5 based on 3 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]