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?

link|improve this question

54% accept rate
4  
How long is "very long"? More than 32K? – Tony Andrews Jan 17 '11 at 15:35
What database version? – DCookie Jan 17 '11 at 16:19
feedback

2 Answers

Assuming that your SQL is not longer than 32K (as @Tony Andrews hinted at), you should be able to use something like this:

declare
   SQL_Text varchar2(32760) := 'select * from dual'; --your query goes here
   cur sys_refcursor;
begin
   open cur for SQL_Text;
end;

When working with Ref Cursors, open-for can be used directly, instead of execute immediate.

link|improve this answer
feedback

Use 11gR2 and DBMS_SQL.to_refcursor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.