Command
-
I have a database, and I would want to create a backup before I delete everything that's in it, but using VC++. So can I issue a comand(when the user clicks new, let's say) that will copy the databse from it's folder to a backup folder? Or what solution would you recommend?
-
I have a database, and I would want to create a backup before I delete everything that's in it, but using VC++. So can I issue a comand(when the user clicks new, let's say) that will copy the databse from it's folder to a backup folder? Or what solution would you recommend?
Backup what kind of database? is it an ms access mdb file or an sql server mdf file or any other type of database? Milton Kb
-
Backup what kind of database? is it an ms access mdb file or an sql server mdf file or any other type of database? Milton Kb
Milton KB wrote:
Backup what kind of database? is it an ms access mdb file or an sql server mdf file or any other type of database?
I use sql server mdf.
-
Milton KB wrote:
Backup what kind of database? is it an ms access mdb file or an sql server mdf file or any other type of database?
I use sql server mdf.
u can use Sql DMO for backing up sql server db. its a time consuming process which varies depends on the size of the db to be copied. so its better to make the backup once and ync the backup with changes in the actual db in realtime. cheers ..Milton KB