REM  W lokalnej bazie danych:
REM
create public database link HR_LINK
connect to current_user
using 'hq';

create view REMOTE_EMP
as select * from EMPLOYEE@HR_LINK
where Ename=User;