I have a stored procedure which used the EXECUTE IMMEDIATE command to execute a very long string. How do I support a very long string and return the data into a refcursor?
| |||||||
feedback
|
|
Assuming that your SQL is not longer than 32K (as @Tony Andrews hinted at), you should be able to use something like this:
When working with Ref Cursors, | |||
|
feedback
|
|
Use 11gR2 and DBMS_SQL.to_refcursor. | |||
|
feedback
|