|
|
|
|
|
|
|
|
|
Re: using more than four db links in a procedure [message #590389 is a reply to message #590370] |
Wed, 17 July 2013 10:09   |
athar.fitfd@hotmail.com
Messages: 193 Registered: October 2007 Location: pakistan
|
Senior Member |
|
|
my scenario is.
begin
select c1 into v_c1 from t1@db1;
select c1 into v_c1 from t1@db2;
select c1 into v_c1 from t1@db3;
select c1 into v_c1 from t1@db4;
select c1 into v_c1 from t1@db5;
end;
it works fine for four statements. when add the fifth one. my procedure compiles with 1 error mentioned above.
even i used commit and close database link using execute immediate. but no luck
|
|
|
|
|
|
|
|
|
|