Dump/Load in Progress
14Abr09
The Dump/Load of a row in Progress is very simple… we can use the export and import.
Sample Dump
OUTPUT TO mytable.d.
FIND FIRST mytable
WHERE cod = 5400
NO-LOCK NO-ERROR.
EXPORT mytable.
OUTPUT CLOSE.
Sample Load
INPUT FROM mytable.d.
REPEAT:
CREATE mytable.
IMPORT mytable.
END.
The import/export can be used for more than one row.
See u…
Filed under: Progress | Leave a Comment
Tags: 4gl, abl, dump, export, import, input, LOAD, output, Progress, row

No Responses Yet to “Dump/Load in Progress”