I have a number of database that I would like to backup table data.
I would like to use a single database (db1) to cycle through the others (dbA-dbZ) and export all the tables to text/spreadsheet/etc.
Current process:
db1 opens dbA
....OpenDatabase(dbA...)
db1 imports all tables from dbA
...loop through tabledefs
...DoCmd.TransferDatabase acImport
db1 exports tables to file
...DoCmd.TransferText/Spreadsheet/etc.
db1 deletes tables from dbA
...TableDefs.Delete
db1 closes dbA
Loop through all databases
Is there a more efficient process for doing this?
Current process generates a large number of Access Security Notice warnings and seems inefficient.
I would like to use a single database (db1) to cycle through the others (dbA-dbZ) and export all the tables to text/spreadsheet/etc.
Current process:
db1 opens dbA
....OpenDatabase(dbA...)
db1 imports all tables from dbA
...loop through tabledefs
...DoCmd.TransferDatabase acImport
db1 exports tables to file
...DoCmd.TransferText/Spreadsheet/etc.
db1 deletes tables from dbA
...TableDefs.Delete
db1 closes dbA
Loop through all databases
Is there a more efficient process for doing this?
Current process generates a large number of Access Security Notice warnings and seems inefficient.