Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem with Data Backup
Message
 
 
À
05/10/2001 13:34:56
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Divers
Thread ID:
00564908
Message ID:
00564916
Vues:
22
>My problem is that the aplication is used all the time.
>
>can i back up all my data even if the database or tables are open.
>
>is this posible.
>
>Please givme any other sugestions to do the backup

About the best you can do is with SQL:
local lnRetVal, lnI, laTables[1]
lnRetVal = adbobjects(laTables, 'TABLE')
for each lcTable in laTables
    select * from (lcTable) into table "c:\backup\" + lcTable + ".dbf"
endfor
Mark McCasland
Midlothian, TX USA
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform