Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Specifying Cursor SQL
Tim Marshall wrote:
> Tim Marshall wrote:
>
>>>> AFAIK, the above is not the way to do it. Could I please ask for >>>> some site, perhaps, that might explain how to use SQL in a dynamic >>>> way as I've tried to do up above? >>> >>> >>> Look at the examples in Morgan's Library (www.psoug.org) for >>> Native Dynamic SQL.
Beats me why some people don't seem to be able to find the original source:
http://tahiti.oracle.com (select the documentation matching your version)
I don't know how you want to process the returned SQL, but perhaps this little snippet gets you in some direction:
SQL> edit
Wrote file afiedt.buf
1 create or replace function anysql (p_stmt in varchar2) return sys_refcursor
2 as
3 result sys_refcursor;
4 begin
5 open result for p_stmt;
6 return result;
7* end;
SQL> /
Function created.
SQL> variable x refcursor;
SQL> exec :x := anysql('select table_name from user_tables');
PL/SQL procedure successfully completed.
SQL> print :x
TABLE_NAME
For further informations on the topic you might want to check out Tom Kyte's page:
HTH
Holger
Received on Tue Sep 20 2005 - 05:12:47 CDT
![]() |
![]() |