Dear Friends, Hi,I am working on a small prject using VB.net and SQL Express. I have created forms to Backup and Restore data by using SMO. These are working correctly execpt only one problem:Now I have added 2 more tables in mydatabase to expand my project, but when I restore data from earlier bakup file. It removes my newly created tables and newly added columns in existing tables.How can I restore only data in tables of mydatabase from .bak file, and retain the new schema of tables and newly added tables.My SMO Restore commands are as following:Dim strFileName As String Dim rstDb As New Restore Dim srv As Server srv = New Server("(local)\SQLEXPRESS") Dim db As Database db = srv.Databases("mydatabasename") strFileName = txtrestore.Text rstDb.Database = db.Name rstDb.Action = RestoreActionType.Database rstDb.Devices.Add(New Smo.BackupDeviceItem(strFileName, DeviceType.File)) rstDb.UnloadTapeAfter = True rstDb.ReplaceDatabase = TrueAnd my SMO backup commands are as following:Dim strFileName As String Dim bkdb As New Backup Dim srv As Server srv = New Server("(local)\SQLEXPRESS") Dim db As Database db = srv.Databases("mydatabasename") strFileName = txtbackup.Text bkdb.Database = db.Name bkdb.Action = BackupActionType.Database bkdb.BackupSetName = "Backup " & db.Name & Date.Now bkdb.Devices.Add(New Smo.BackupDeviceItem(strFileName, DeviceType.File)) bkdb.Initialize = True bkdb.SkipTapeHeader = True bkdb.UnloadTapeAfter = TrueHow can I restore the data only from my backup file and retain newly added tables in my database and retain newly added columns in my tables.