Search notes:

ORA-02020: too many database links in use

select 'max open links'    text, to_number(value) value from v$parameter where name = 'open_links' union all
select 'actual open links' text, count(*) value from v$dblink;
Close open database links:
begin
   for lnk in (select db_link from v$dblink) loop
       dbms_session.close_database_link(lnk.db_link);
   end loop;
end;
/

See also

database link
Other Oracle error messages

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:51 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(51): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(66): id_of(Object(PDO), 'uri', '/notes/developm...') #2 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1745308241, '18.118.226.34', 'Mozilla/5.0 App...', NULL) #3 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-02020_too-many-database-links-in-use(48): insert_webrequest() #4 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 51