Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Overwrite an access table
Message
From
12/11/2003 11:56:59
 
 
To
12/11/2003 09:37:47
General information
Forum:
Visual Basic
Category:
Database DAO/RDO/ODBC/ADO
Miscellaneous
Thread ID:
00849076
Message ID:
00849138
Views:
16
This message has been marked as the solution to the initial question of the thread.
Hi Wilson:

You must use temporary tables instead permanent table. This has the advantage to use these tables while the transaction is running. Otherwise you have to drop the table before repeat the same query. Both solutions are:

Solution 1:

DROP TABLE TMP_PaytableFiltered
SELECT * INTO TMP_PaytableFiltered FROM Paytable

Solution 2:

SELECT * INTO #TMP_PaytableFiltered FROM Paytable

Each solution will work in function of your need.

Efrainn Contreras
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform