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 -> Cursor with schema name change

Cursor with schema name change

From: Linda Lee <goforticket_at_yahoo.com>
Date: 15 Sep 2003 21:03:04 -0700
Message-ID: <f901fb80.0309152003.6fd9f659@posting.google.com>


I have two procedures that use a cursor to get data from two tables of same structure, but different accounts:

create or replace procedure test1 as
cursor c1
select firstname from USER1.emp
 where dept = '01';
begin
for l in c1 loop
...

end loop;
end;

create or replace procedure test2 as
cursor c1
select firstname from USER2.emp
 where dept = '01';
begin
for l in c1 loop
...

end loop;
end;  

How can I write one procedure to do the same thing, and pass the schema name(USER1 or USER2) as a variable to call the procedure?

Thank you very much for your help. Received on Mon Sep 15 2003 - 23:03:04 CDT

Original text of this message

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