Search notes:

Oracle: V$DBLINK

v$dblink shows database links that were opened by the session that is query from this view:
select
  dbl.protocol,
  dbl.db_link,
  dbl.logged_on,
  dbl.heterogeneous,
  usr.username,
  dbl.open_cursors,
  dbl.in_transaction,
  dbl.update_sent,
  dbl.commit_point_strength
from
  v$dblink  dbl                                left join
  dba_users usr on dbl.owner_id = usr.user_id;
The following query (inspired by MOS note 387848.1) shows all open database links:
select
   username,
   osuser,
   status,
   sid,
   serial#,
   machine,
   process,
   terminal,
   program
from
   v$session
where
   saddr in (select k2gtdses from sys.x$k2gte);

See also

dba_db_links
Oracle Dynamic Performance Views

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758205148, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/dblink/index(69): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78