How to get last x characters from clob using subbstr or some other function
just like
substr( stringval, pos2, length(stringval)) works as expected but the same for clob does not
dbms_lob.substr( stringval, pos2, dbms_lob.length(stringval) )
the third argument in clob is offset.
so I know the valoe of pos2 and want to concatenate all characters from pos2 to end of clob
Edited by: user6287828 on Jul 12, 2011 2:39 PM
Edited by: user6287828 on Jul 12, 2011 2:40 PM