Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Server Backup & Restore
Message
 
 
To
03/10/2005 05:28:49
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01055425
Message ID:
01055504
Views:
12
Try with SQL-DMO

Local oServer As SQLDMO.SqlServer
oServer = Createobject('SQLDMO.SqlServer')

oServer.LoginSecure = .T.
oServer.Connect()

oBackup = CreateObject('SQLDMO.Backup')
With oBackup
.Database = "Northwind"
.Files = '[C:\kup]'
.Initialize = .T.
.BackupSetName = "MiBackup"
.BackupSetDescription = "Descripción"
.SQLBackup(oServer)
Endwith

oServer.DisConnect()
Release oServer
David Amador Tapia
WebMaster "La Web de Davphantom"
www.davphantom.net
Cartagena. Colombia
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform