I have a function that receives a query as parameter (as clob type) and ‘selects’ this query’s rows for returning. I need to use dbms_sql, because the query’s size is larger than 32kb (~150kb).
I’m stuck at point of fetching into result:
-- execute immediate style (does not work with clob):
EXECUTE IMMEDIATE large_query BULK COLLECT INTO V_TAB ;
-- dbms_sql style:
v_upperbound := CEIL(DBMS_LOB.GETLENGTH(large_query)/256);
FOR i IN 1..v_upperbound
LOOP
v_sql(i) := DBMS_LOB.SUBSTR(large_query,256,((i-1)*256)+1);
END LOOP;
v_cur := DBMS_SQL.OPEN_CURSOR;
DBMS_SQL.PARSE(v_cur, v_sql, 1, v_upperbound, FALSE, DBMS_SQL.NATIVE);
v_ret := DBMS_SQL.EXECUTE(v_cur);
-- NOW WHAT??
I’m in Oracle 9i/10g, so I can’t use dbms_slq.to_refcursor.
Any suggestions?
Here’s an example from the Oracle docs. Basically you need
dbms_sql.fetch_rowsanddbms_sql.column_value: