Search notes:

ORA-54008: expression column is not supported for an index organized table

An index organized table cannot have a virtual column, the following create table statement throws ORA-54008: expression column is not supported for an index organized table:
create table tq84_ora_54008(
   pk         integer primary key,
   val        varchar2(10),
   val_up as (upper(val))
)
organization index;
So does the seconds statement here:
create table tq84_ora_54008(
   pk  integer primary key,
   val varchar2(10)
) organization index;
   
alter table tq84_ora_54008 add (val_up as (upper(val))); 

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: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...', 1758200927, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #3 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-54008_expression-column-is-not-supported-for-an-index-organized-table(51): insert_webrequest() #4 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 51