Hi,
One of the Access DB I inherited has a code which drops a temp table, runs a make table query, which queries all the fields of a linked table and creates the temp table.
The query uses fields from only the linked table and not other data sources. This is fine and no issues.
Can I rather use the CopyObject to copy the linked table and rename the table to the name of temp table or use the make table query?
DoCmd.CopyObject, "tbltemp_local", acTable, "tbl_Linked"
Which is faster?
TIA
One of the Access DB I inherited has a code which drops a temp table, runs a make table query, which queries all the fields of a linked table and creates the temp table.
The query uses fields from only the linked table and not other data sources. This is fine and no issues.
Can I rather use the CopyObject to copy the linked table and rename the table to the name of temp table or use the make table query?
DoCmd.CopyObject, "tbltemp_local", acTable, "tbl_Linked"
Which is faster?
TIA