Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Appending records with memo fields
Message
De
08/06/2012 11:16:42
Mike Yearwood
Toronto, Ontario, Canada
 
 
À
08/06/2012 10:43:27
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
01545665
Message ID:
01545668
Vues:
91
This message has been marked as the solution to the initial question of the thread.
>I am constructing an archive utility. As part of this I require to append fields from an existing dbf to a newly created archive file. The dbf is around 8mb with an associated 5mb fpt file. Even when I mark say only 2 of the records to be archived it seems to take an age to append the records fromt the dbf to the new archive file. On inspecting the archive file I find I have my 2 selected records - but the fpt file has come across in it's entirety (5mb); If I pack the new archive dbf it reduces the fpt to a few k in size. I am presuming the append operation is taking so long because of the size of the original fpt file.
>
>Is this behaviour normal?
>
>Thanks
>Barry Sutton

It depends on exactly what you are doing. I suspect you are doing this:

SELECT Archive
APPEND FROM existing FOR marked = .T.

Best to use SQL to

SELECT * FROM existing WHERE marked = .T. INTO CURSOR c_Temp NOFILTER
SELECT Archive
APPEND FROM DBF('c_Temp')
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform