I run the following code to import a table from another database into my current database.
DoCmd.TransferDatabase acImport, "Microsoft Access", _
"C:\MyDocs\AnotherDatabase.mdb", acTable, "AnotherTable2009", “CurrentTable2009”
If CurrentTable2009 already exists in my current database, I do...