I need to concatenate two columns which are VARCHAR2(4000). The result strings do not fit into a VARCHAR2(4000) column, as they are too long.
Since the concatenate operator can accept CLOBs, I figured I would convert each column on the fly to CLOB and then just ||
them together.
However, there is no TO_CLOB
on 8i.
CAST does not work with CLOB.
How can I accomplish this?
Limitations :
- Oracle 8i
- read-only access
- no CREATE permissions