Tom:
Let's assume you have a table structured thusly:
create table po_hdr {
int_key integer,
description char(25),
memo_field text
}
Place two data rows in a file called x.unl
1|FIRST RECORD|A LINE OF TEXT FOR TESTING|
2|SECOND RECORD|ANOTHER LINE OF TEXT|
FROM query language of dbaccess/isql:
load from x.unl insert into po_hdr
You can also unload data using any valid select:
unload to anotherfile.unl select * from po_hdr
By default, the Informix field delimiter DBDELIMITER is the pipe symbol, |. You can change it to something else such as the ampersand:
export DBDELIMITER=\& # special character must be
# escaped under unix
If you want to modify a blob text "in place", unfortunately, you need an external program written in Informix 4GL, "C", VB, etc. This is probably not what you wanted to hear.
Regards,
Ed
Schaefer