Search notes:

ORA-14400: inserted partition key does not map to any partition

create table tq84_part_intv_rng (
    num    number,
    grp    varchar2(1),
    val    number
)
partition by range (num) interval (100)
    subpartition by list (grp)
        subpartition template (
          subpartition sub_part_a values ('A'),
          subpartition sub_part_b values ('B'),
          subpartition sub_part_c values ('C')
        )
(
  partition values less than ( 100 ) 
);
insert into tq84_part_intv_rng values (444, 'X', 42);

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...', 1759473869, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-14400_inserted-partition-key-does-not-map-to-any-partition(52): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78