amorosik
Member
- Local time
- Today, 23:51
- Joined
- Apr 18, 2020
- Messages
- 518
I'm using a procedure created with Access 2003 Currently the environment I'm using is Access 2013
One line of code that worked fine using Access 2033 was:
DoCmd.TransferText acExportHTML, , table_name, file_name, True
With the most recent development environment, an 'Export Specification' which describes the sequence of data to be extracted seems to be indispensable
This 'Export Specification' requires manual creation
But with a large number of tables this operation is impossible to do manually
The question is: how to use DoCmd.TransferText (or other command) to export the entire data content of a table, and use the produced file for a subsequent import without knowing the 'Export/Import Specification' ?
One line of code that worked fine using Access 2033 was:
DoCmd.TransferText acExportHTML, , table_name, file_name, True
With the most recent development environment, an 'Export Specification' which describes the sequence of data to be extracted seems to be indispensable
This 'Export Specification' requires manual creation
But with a large number of tables this operation is impossible to do manually
The question is: how to use DoCmd.TransferText (or other command) to export the entire data content of a table, and use the produced file for a subsequent import without knowing the 'Export/Import Specification' ?