help

stephen297

New Member
hi all,
I am new to progress and currently have a client with v8.3b, running on windows 2000 server, can anyone advise me, how to extra a customers, suppliers list from the data base?
stephen
 
please expand on what u are trying to extr. a .ct.
what format, from where to where, what format you need it in, etc etc
a little more info.
 
I have a client who is running progress V8.3b, on windows server 2000, I need to export the table content, to extract the suppliers list and customer list, on another type of SQL data base, otherwise I am into typing them manually?
 
You can for example output the data in tabular format (csv, pipe separated, tab-separated, ....)

define stream sOut.
define variable cFileName as char no-undo.

assign
cFileName = session:temp-dir + "myname.csv".

output stream sOut to value(cFileName).
for each customer :
export stream sOut customer.
end.
output stream sOut close.
 
Back
Top