Consultor Eletrônico



Kbase P109120: Using 4GL commands to export data from a table
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   26/11/2008
Status: Verified

GOAL:

Using 4GL commands to export data from a table

GOAL:

How to use the EXPORT statement to dump records to a file.

FIX:

Here is an example of how to export records for customers that meet a specific criteria:


/* Export customers from Boston */
Output to Cust_Bost.d.
For Each customer where city = "Boston":
Export customer.
END.
Output close.