Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Efficent Method for copying data between tables.
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00487212
Message ID:
00487254
Views:
10
>Hi Claude,
>
>>I have two tables with the same names and structure in two different folders. They include meno fields. I want to copy (append) records from table in folder a to similar table in folder b (excluding deleted records). What is the best way of doing this? Pseduo code
>>
>> copy from c:\a\b\table to c:\x\y\table for not deleted
>
>APPEND FROM should do the trick!
If you need to be more selective you could
SELECT ... FROM c:\a\b\table WHERE ... INTO CURSOR whatever
USE AGAIN c:\x\y\table ALIAS table2
APPEND FROM DBF('whatever')
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform