Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Overwrite an access table
Message
De
12/11/2003 11:56:59
 
 
À
12/11/2003 09:37:47
Information générale
Forum:
Visual Basic
Catégorie:
Bases de données DAO/RDO/ODBC/ADO
Divers
Thread ID:
00849076
Message ID:
00849138
Vues:
17
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform