Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
First thing you can do is run this query as the user whose DB links are the subject of your investigation:Prbnc said:How do we know we are not using DBLINK?
col db_link format a30
col host format a30
col x heading "DB Links"
select substr(db_link,1,decode(instr(db_link,'.')
,0,length(db_link)
,instr(db_link,'.')-1
)
) db_link, host
from user_db_links
order by db_link
/
SQL> select count(*) from user_tables;
COUNT(*)
----------
115
SQL> select count(*) from user_tables@dlha099;
COUNT(*)
----------
23