Maximum CHARCACTER size on LONGCHAR.

Posted by marian.edu on 15-Sep-2015 07:22

Might be a know issue but couldn't find it ok KB (not even with help from google), anyone knows why this error (9324) pop-ups when appending data to a longchar variable?

Tried both with lcvar = lcvar + more data (also longchar) and using copy-lob overlay at (btw, append sounds like a valid option for variables as well not just file destination)... at some point the error is thrown although before that the length of variable (raw) was more than 1,100,000 bytes so a little bit above the expected 32k.

windows7/64bit

oe11.5/64bit

will probably switch to sax-writer anyway but found that strange :(

All Replies

Posted by Garry Hall on 15-Sep-2015 07:37

The (9234) error indicates you are trying to put more data into a CHARACTER variable than it can handle (slightly lower than 32K). This suggests you might not be appending the data to a LONGCHAR variable, but to a CHARACTER variable. If you can provide code to demonstrate this with a LONGCHAR variable, please ask Tech Support to log a bug.

Posted by marian.edu on 15-Sep-2015 08:08

Thanks Garry, did used longchar all over the place but somehow managed to let one debug message at the end where string(lcvar) was used :(

This thread is closed