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

Home -> Community -> Usenet -> c.d.o.misc -> Is this possible

Is this possible

From: <krishnamurthy.iyer_at_gmail.com>
Date: 15 Jul 2006 15:08:08 -0700
Message-ID: <1153001287.947199.248620@s13g2000cwa.googlegroups.com>


create or replace procedure t1 is
strSQL varchar2(50);
my_cursor INTEGER;
begin

        strSQL:='create or replace procedure t2 is';
        strSQL:= strSQL ||' begin';
        strSQL:= strSQL ||'  end t2';

my_cursor:= DBMS_SQL.OPEN_CURSOR;

DBMS_SQL.PARSE(my_cursor, strSQL, DBMS_SQL.V7);

DBMS_SQL.CLOSE_CURSOR(my_cursor);            

end t1; Received on Sat Jul 15 2006 - 17:08:08 CDT

Original text of this message

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