Search notes:

ORA-00069: cannot acquire lock -- table locks disabled for‥

create table tq84_A(id integer primary key, txt varchar2(10));
create table tq84_B(id integer primary key, txt varchar2(10));
Prevent DDL locks (which are used when modifying the structure of a table) on tq84_B.
alter table tq84_b disable table lock;
This works ok:
drop table tq84_a;
However, trying to drop tq84_b results in ORA-00069: cannot acquire lock -- table locks disabled for TQ84_B.

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...', 1788390679, '216.73.217.21', 'Mozilla/5.0 App...', NULL) #3 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-00069_cannot-acquire-lock_table-locks-disabled-for(42): insert_webrequest() #4 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 51