Click here to Skip to main content
15,884,836 members
Articles / Desktop Programming / Windows Forms

SqlServer Backup/Restore Utility

Rate me:
Please Sign up or sign in to vote.
4.73/5 (21 votes)
9 Jun 2009CPOL 92K   20.2K   73   24
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.

C#
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: 

C#
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:

C#
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)


Written By
Azerbaijan Azerbaijan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAwesome JOB ALIOGLU! Pin
Member 1362551821-Feb-18 20:18
Member 1362551821-Feb-18 20:18 
GeneralRestore Utility is not working Pin
abhishektiwary198715-Aug-13 23:16
abhishektiwary198715-Aug-13 23:16 
QuestionThanks for this artical Pin
ashumeerut3-Aug-13 22:33
ashumeerut3-Aug-13 22:33 
Answersoln for sql server 2008 r2 not supporting Pin
ashumeerut3-Aug-13 22:32
ashumeerut3-Aug-13 22:32 
Questionproblem with sqlserver 2008r2 Pin
ashumeerut3-Aug-13 20:33
ashumeerut3-Aug-13 20:33 
Questionrestore not work Pin
soheaila25-Feb-13 7:49
soheaila25-Feb-13 7:49 
AnswerRe: restore not work Pin
alioglu26-Feb-13 19:13
alioglu26-Feb-13 19:13 
GeneralRe: restore not work Pin
soheaila26-Feb-13 20:54
soheaila26-Feb-13 20:54 
GeneralRe: restore not work Pin
alioglu26-Feb-13 21:58
alioglu26-Feb-13 21:58 
GeneralRe: restore not work Pin
soheaila26-Feb-13 22:59
soheaila26-Feb-13 22:59 
Questionhb Pin
birjandi15-Feb-13 3:31
birjandi15-Feb-13 3:31 
Questionvary good Pin
dariush_hk17-Dec-12 8:30
dariush_hk17-Dec-12 8:30 
GeneralMy vote of 5 Pin
Kanasz Robert24-Sep-12 6:16
professionalKanasz Robert24-Sep-12 6:16 
Questionhow to Underline for a Asp button text hot key or short cut key... Pin
sujitchopade@ymail.com9-Apr-12 22:03
sujitchopade@ymail.com9-Apr-12 22:03 
Questionwhich version of sql server can this code take the back up? Pin
Member 808325814-Jul-11 5:26
Member 808325814-Jul-11 5:26 
Generalhandling exception when perform backup Pin
rohalah12-Oct-10 13:11
rohalah12-Oct-10 13:11 
QuestionHow to get Backup &amp; Restore in Client Machine? Pin
Sivaooty4-Feb-10 22:25
Sivaooty4-Feb-10 22:25 
GeneralWhy did the progress don't working when i backup Pin
lxg_831117-Nov-09 21:37
lxg_831117-Nov-09 21:37 
Questiondon't want to show system databases? Pin
wael32gh4-Oct-09 19:49
wael32gh4-Oct-09 19:49 
AnswerRe: don't want to show system databases? Pin
alioglu5-Oct-09 0:53
alioglu5-Oct-09 0:53 
GeneralRe: don't want to show system databases? Pin
LeleHalfon11-Nov-09 3:54
LeleHalfon11-Nov-09 3:54 
NewsExclusive access could not be obtained because the database is in use Pin
wael32gh4-Oct-09 6:30
wael32gh4-Oct-09 6:30 
GeneralSMO objects always bugs me Pin
Abhishek Sur9-Jun-09 11:01
professionalAbhishek Sur9-Jun-09 11:01 
GeneralSimple and to the point Pin
ameetj859-Jun-09 10:48
ameetj859-Jun-09 10:48 

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

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