Backing up tables

rkrause

Registered User.
Local time
Today, 03:17
Joined
Sep 7, 2007
Messages
343
I have taken over a database from a previous employee and he has a section built in to back up tables, but its not functional yet. Basically all it is, is a button with no code behind it. I would like to implement that, could someone give me some advice and some code on how to back up tables?

thanks
 
I have taken over a database from a previous employee and he has a section built in to back up tables, but its not functional yet. Basically all it is, is a button with no code behind it. I would like to implement that, could someone give me some advice and some code on how to back up tables?

thanks

Normally, you back up a database, not a table.

I searched and found this:
Backup database

If this is not what yu need, would you plaase explain in detail what you are trying to do.
 
You could use TransferDatabase to copy the tables to another database, or use append queries to copy specific records. I haven't needed TransferDatabase, but I would suspect you'd have to make sure no users were in the tables to avoid locking issues.
 

Users who are viewing this thread

Back
Top Bottom