I need to select a link at the beginning in the script. Usually we do select links as below,
begin
select * from v$database@linkname;
end;
But now I need to select the link at the beginning something like this,
begin
select_link 'linkname';
select * from v$database;
end;
Thank you!