Re: dynamic tablename with %rowtype
Date: 14 Apr 2004 06:53:50 -0700
Message-ID: <5e092a4e.0404140553.7af42ee9_at_posting.google.com>
kool_sri_at_hotmail.com (Sri) wrote in message news:<3f2140c3.0404122119.780e062d_at_posting.google.com>...
> how to handle a situation where i wnt a variable of type ref cursor.
>
> TYPE refCur IS REF CURSOR;
> rc refCur;
>
> myRow rc%rowtype; -- How can I make this work???
>
> The whole problem is that only on run time I am able to know the table
> on which i have to work. So I have created a Ref Cursor
>
> BEGIN
> sqlStmt := 'select * from ' || mytable; -- mytable is stored in one
> of the table in the database. depending on the parameter passed to
> the proc the table name is retrived.
>
> OPEN rc FOR sqlStmt;
> LOOP
> FETCH rc into myRow; -- ??? I want to fetch the data from the
> cursor in a rowtype of the table - mytable. how to handle this
> situation.
> ....
> ....
> END LOOP;
> END;
>
> please guide me... as to how can i make a variable of my cursor
> rowtype. i am in urgent need of a solution asap.
> thanks
>
> Sri
I don't think you can do this dynamically with straight PL/SQL code. But take a look at the Oracle supplied package DBMS_SQL. It may allow you to do this, or accomplish the same thing in a different way.
Dave Received on Wed Apr 14 2004 - 15:53:50 CEST