I am using the DB2 EXPORT command to export in DEL format like this:
EXPORT TO "4000T2.txt" OF DEL MODIFIED BY NOCHARDEL COLDEL% MESSAGES "4000T2Msg.txt" SELECT * FROM T2;
One of the columns is of size VARCHAR(4000). The exported flat file contains all the 4000 chars but the Message file states a warning message that says that a certain column is over 254 bytes.
Since the exported flat file has my required data, I am tempted to ignore the warning in the message file. Should I take this seriously or will the behaviour of exporting the 4000 chars be consistent no matter the warning??
Thanks for any help.