What would be the best way for me to have my dbase table
data backed up automatically into another dbase table?
If you really mean dBASE, then you can simply use a DOS file copy command:
c:> copy d:\MyOldData\Something.dbf h:\MyNewData\Backup.dbf
If you mean tables with an Access database, then probably copying the mdb
file is still the easiest. The safest way is probably to copy the file to a
new location, then use Access to compact it back over the original.
If you really want to copy individual tables only, then you can use a make
table query with the IN clause:
SELECT OneField, TwoField, ThreeField
INTO BackupTable IN [h:\mynewdata\backup.mdb]
FROM MyCurrentTable
WHERE ToBeAchived = TRUE
check the syntax in the help file under the IN CLAUSE
Hope that helps
Tim F