Click here to Skip to main content
Licence CPOL
First Posted 9 Jun 2009
Views 19,845
Downloads 3,280
Bookmarked 61 times

SqlServer Backup/Restore Utility

By | 9 Jun 2009 | Article
SqlServer Backup/Restore Utility helps to backup and restore database
BackupRestore_Source

Introduction 

Sometimes you need to migrate the database from the server where Management Studio is not installed (for example, when you use SQL Server Express Edition). This utility helps you to instantly backup, then restore to database server. 

Using the Application

Before running an application, edit connectionStrings section in BackupRestore.exe.config file to connect your database.  

Using the Code

At first, you need to get a list of available databases using the default connection string. The list of databases is bound to two combo boxes used for selecting database to backup or restore.

sqlConn = new SqlConnection(Properties.Settings.Default.masterConnectionString);
sqlServer = new Server(new ServerConnection(sqlConn));

dbList = new List<database>();
foreach (Database db in sqlServer.Databases)
{
        dbList.Add(db);
}

cmbBackupDb.DataSource = dbList;
cmbRestoreDb.DataSource = dbList;

Database Backup

back_rest_1.png

Database backup process is performed using the Microsoft.SqlServer.Management.Smo.Backup class. When user selects database and file to save the backup to, the following method will be executed: 

private void BackupDb()
{
    dbName = ((Database)cmbBackupDb.SelectedItem).Name;
    Backup dbBackup = new Backup();

    try
    {
        dbBackup.Action = BackupActionType.Database;
        dbBackup.Database = dbName;
        dbBackup.BackupSetName = string.Format("{0} backup set.", dbName);
        dbBackup.BackupSetDescription = string.Format("Database: {0}. Date: {1}.", 
			dbName, DateTime.Now.ToString("dd.MM.yyyy hh:m"));
        dbBackup.MediaDescription = "Disk";

        BackupDeviceItem device = new BackupDeviceItem
			(saveBakFile.FileName, DeviceType.File);
        dbBackup.Devices.Add(device);

        txtBackupSql.Text = dbBackup.Script(sqlServer);

        progBar.Visible = true;
        progBar.Value = 0;

        dbBackup.Complete += new ServerMessageEventHandler(dbBackup_Complete);
        dbBackup.PercentCompleteNotification = 10;
        dbBackup.PercentComplete += 
		new PercentCompleteEventHandler(PercentComplete);

        dbBackup.SqlBackup(sqlServer);
    }
    catch (Exception exc)
    {
        dbBackup.Abort();
        MessageBox.Show(string.Format
		("Exception occurred.\nMessage: {0}", exc.Message));
    }
    finally
    {
        sqlConn.Close();
    }
}

Database Restore

back_rest_2.png

Database restore process is performed using the Microsoft.SqlServer.Management.Smo.Restore class. When user selects database and the file to restore from, the following method will be processed:

private void RestoreDb()
{
    Database restoreDb = (Database)cmbRestoreDb.SelectedItem;
    dbName = restoreDb.Name;

    Restore dbRestore = new Restore();
    dbRestore.Database = restoreDb.Name;
    dbRestore.Action = RestoreActionType.Database;
    dbRestore.ReplaceDatabase = true;
       
    string fileLocation = ConfigurationManager.AppSettings["SqlFileLocations"];

    try
    {
        BackupDeviceItem device = new BackupDeviceItem
			(openBakFile.FileName, DeviceType.File);
        dbRestore.Devices.Add(device);
        DataTable dtFiles = dbRestore.ReadFileList(sqlServer);
        string backupDbLogicalName = dtFiles.Rows[0]["LogicalName"].ToString();

        RelocateFile dbRf = new RelocateFile
	(backupDbLogicalName, string.Format("{0}\\{1}.mdf", fileLocation, dbName));
        RelocateFile logRf = new RelocateFile(string.Format("{0}_log", 
	backupDbLogicalName), string.Format("{0}\\{1}_Log.ldf", 
	fileLocation, dbName));
        dbRestore.RelocateFiles.Add(dbRf);
        dbRestore.RelocateFiles.Add(logRf);

        string sql = string.Empty;
        StringCollection scriptColl = dbRestore.Script(sqlServer);
        foreach (string str in scriptColl)
        {
            sql += str;
        }
        txtBackupSql.Text = sql;

        progBar.Visible = true;
        progBar.Value = 0;

        dbRestore.Complete += new ServerMessageEventHandler(dbRestore_Complete);
        dbRestore.PercentComplete += 
		new PercentCompleteEventHandler(PercentComplete);
        dbRestore.SqlRestore(sqlServer);
    }
    catch (Exception exc)
    {
        dbRestore.Abort();
        MessageBox.Show(string.Format
		("Exception occurred.\nMessage: {0}", exc.Message));
    }
    finally
    {
        sqlConn.Close();
    }
}

History

  • 9th June, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

alioglu



Azerbaijan Azerbaijan

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhow to Underline for a Asp button text hot key or short cut key... Pinmembersujitchopade@ymail.com22:03 9 Apr '12  
Questionwhich version of sql server can this code take the back up? PinmemberMember 80832585:26 14 Jul '11  
Generalhandling exception when perform backup Pinmemberrohalah13:11 12 Oct '10  
QuestionHow to get Backup & Restore in Client Machine? PinmemberSivaooty22:25 4 Feb '10  
GeneralWhy did the progress don't working when i backup Pinmemberlxg_831121:37 17 Nov '09  
Questiondon't want to show system databases? Pinmemberwael32gh19:49 4 Oct '09  
AnswerRe: don't want to show system databases? Pinmemberalioglu0:53 5 Oct '09  
GeneralRe: don't want to show system databases? PinmemberLeleHalfon3:54 11 Nov '09  
NewsExclusive access could not be obtained because the database is in use Pinmemberwael32gh6:30 4 Oct '09  
GeneralSMO objects always bugs me PinmemberAbhishek Sur11:01 9 Jun '09  
GeneralSimple and to the point Pinmemberameetj8510:48 9 Jun '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 9 Jun 2009
Article Copyright 2009 by alioglu
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid