I have one procedure - out parameter as follow,
C1 OUT ret_cursor,
we are opening cursor as follow,
open C1 FOR select F1('p1','p2') -- (function returning CLOB datatype) from xyz
but I am getting error because of CLOB return datatype of function
any other way to define for CLOB in OUT cursor.