Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Problem with Data Backup
Message
 
 
To
05/10/2001 13:34:56
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
00564908
Message ID:
00564916
Views:
21
>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
Previous
Reply
Map
View

Click here to load this message in the networking platform