I am using Access 2000. What I have is one Access database that is my "Master" with one table. I would like to insert data into this "Master" table from another Access 2000 database and not alter the data or structure in the destination table. I am currently trying to use:
DoCmd.TransferDatabase acExport, "Microsoft Access", [My Server Filename], acTable, "SAP_Import", "ABS_Daily", False
and this works but the entire "Master" table and data is replaced with the new incomming file. Basically I want to copy from 1 and Paste Append into the other. Any suggestions, Thank you.
DoCmd.TransferDatabase acExport, "Microsoft Access", [My Server Filename], acTable, "SAP_Import", "ABS_Daily", False
and this works but the entire "Master" table and data is replaced with the new incomming file. Basically I want to copy from 1 and Paste Append into the other. Any suggestions, Thank you.