Automatic Backup

R

Raul Sousa

Hi all,
I would like to have a Schedule database backup. Is this possible?
I have a database being used by several people.
I told then to periodically make a backup. I am afraid they don’t.
So I would like to automate this task. Is the any way of doing this?
 
J

jacksonmacd

Depends what you mean by "periodically". If they consistently shut
down the database each night so that it is inactive, then any backup
software should be able to be scheduled for a middle-of-the-night
backup.

It's a different story if you want to make a backup when the database
is active, because backup software will usually skip files that are
currently open. To handle that situation, you could use the CopyFile
Windows API in a VBA program to force the open backend MDB file to be
copied into a new instance of the database. Then use the Windows Task
Scheduler to periodically run the program.
 
C

ciroteo

jacksonmacd said:
Depends what you mean by "periodically". If they consistently shut
down the database each night so that it is inactive, then any backup
software should be able to be scheduled for a middle-of-the-night
backup.

It's a different story if you want to make a backup when the database
is active, because backup software will usually skip files that are
currently open. To handle that situation, you could use the CopyFile
Windows API in a VBA program to force the open backend MDB file to be
copied into a new instance of the database. Then use the Windows Task
Scheduler to periodically run the program.



i think you can also use an external tool. i found very useful cobian
backup. it copies and keeps in zip format.
it's free and very light.
check it out on the internet
 
R

Raul Sousa

thank you very much

"ciroteo" escreveu:
i think you can also use an external tool. i found very useful cobian
backup. it copies and keeps in zip format.
it's free and very light.
check it out on the internet
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top