Search notes:

ORA-38397: table is not enabled for the ILM feature

The following statement throws ORA-38397: table is not enabled for the ILM feature:
create table tq84_ora_38397(
   id integer primary key,
   txt varchar2(20)
)
no row archival;
This one runs ok:
create table tq84_ora_38397(
   id integer primary key,
   txt varchar2(20)
)
row archival;
Now, altering to no row archival is possible:
alter table tq84_ora_38397 no row archival;

See also

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: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...', 1759473983, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-38397_table-is-not-enabled-for-the-ILM-feature(53): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78