I am importing data to Access 2002 from an Oracle database. My vba code is:
Sub importTbl()
DoCmd.TransferDatabase acImport, "ODBC", "ODBC;DSN=myDSN;UID=myUID;PWD=myPW", acTable, "SourceTbl", "DestTbl", False
' the above transfer is succesful.
' The next transfer produces an error...