Problem with dblink - ORA-02085
I create dblink MY_LINK, but when I run:
select *
from city@MY_LINK
I get:
ORA-02085: database link MY_LINK connects to ORCL2
If I run:
alter session set global_names=false, the query run correctly
Now I must schedule one job with dblink MY_LINK every day.
How can I change global_names to run correcly the database link MY_LINK always?
Thanks in advance!