Using the SQL SMO object we can easily take backup of SQL database through code.To find the codes plz check th link below:
http://www.mindfiresolutions.com/Bac...-VBNET-846.php
MikeTI wrote:
Backup of Remote SQL Server using VB Net Code
26-Jan-10
Jan 26, 201
Hi al
I am using VB Net 2008 and SQL 2008
I am taking a backup of a local SQL Server Database using the followin
code
Dim backup As SQLDMO.Backup = New SQLDMO.BackupClass(
Dim sqlserver As SQLDMO.SQLServer = New SQLDMO.SQLServerClass(
sqlserver.LoginSecure = Fals
sqlserver.Connect("MIKETI-PC\sqlexpress", "sa", "sapassword"
backup.Action = SQLDMO.SQLDMO_BACKUP_TYPE.SQLDMOBackup_Databas
backup.Database = "TestDataBase
backup.Files = "C:\SQL_BACKUP\TestDataBase.bak
backup.BackupSetName = "Test01
backup.BackupSetDescription = "Database backup description
backup.Initialize = Tru
backup.SQLBackup(sqlserver
How can I take a backup of a remote SQL Server Database on my local PC ?
Regard
Mike TI
Previous Posts In This Thread:
On Tuesday, January 26, 2010 6:21 AM
MikeTI wrote:
Backup of Remote SQL Server using VB Net Code
Jan 26, 201
Hi al
I am using VB Net 2008 and SQL 2008
I am taking a backup of a local SQL Server Database using the followin
code
Dim backup As SQLDMO.Backup = New SQLDMO.BackupClass(
Dim sqlserver As SQLDMO.SQLServer = New SQLDMO.SQLServerClass(
sqlserver.LoginSecure = Fals
sqlserver.Connect("MIKETI-PC\sqlexpress", "sa", "sapassword"
backup.Action = SQLDMO.SQLDMO_BACKUP_TYPE.SQLDMOBackup_Databas
backup.Database = "TestDataBase
backup.Files = "C:\SQL_BACKUP\TestDataBase.bak
backup.BackupSetName = "Test01
backup.BackupSetDescription = "Database backup description
backup.Initialize = Tru
backup.SQLBackup(sqlserver
How can I take a backup of a remote SQL Server Database on my local PC ?
Regard
Mike TI
On Tuesday, January 26, 2010 12:14 PM
Joe Cool wrote:
rClass()rd")Databaseion"Use a standard SqlClient connection and execute a
rClass(
rd"
Databas
ion
Use a standard SqlClient connection and execute a backup databas
transact-sql command. It is my impression that you will only be abl
to make a backup copy to a local disk, but you can make a backup t
network disk if SQL instance service is running under a domain
workgroup account instead of the server's local SYSTEM account
http://msdn.microsoft.com/en-us/library/ms186865.aspx
On Tuesday, January 26, 2010 3:11 PM
Rich P wrote:
If you are working remotely, I think you can only run the backupoperation on
If you are working remotely, I think you can only run the backu
operation on the machine (the remote server) where the DB resides. The
you can copy/FTP the .bak to your local computer. I think
Ric
*** Sent via Developersdex
http://www.developersdex.com ***
Submitted via EggHeadCafe - Software Developer Portal of Choice
Get Started with SQLite and Visual Studio
http://www.eggheadcafe.com/tutorials...-sqlite-a.aspx