Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Tricky Dynamic SQL question

Re: Tricky Dynamic SQL question

From: rajXesh <member_at_dbforums.com>
Date: Thu, 26 Dec 2002 15:17:09 +0000
Message-ID: <2318730.1040915829@dbforums.com>

Why dont you try weakely typed ref cursors.

for eg

declare

c sys_refcursor;

begin

  open c for ' select * from ' || v_table_name;

end;

--

Posted via http://dbforums.com Received on Thu Dec 26 2002 - 09:17:09 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US