Search notes:

ORA-14300: partitioning key maps to a partition outside maximum permitted number of partitions

create table tq84_tab (
   dt  date,
   id  integer,
   nm  number,
   tx  varchar2(10)
)
partition by range
  (dt) interval (numtoyminterval(1, 'MONTH'))
  (partition p_1 values less than (date '2020-01-01'))
;

insert into tq84_tab values (null, 42, 123.45, 'xxx');

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...', 1759473798, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-14300_partitioning-key-maps-to-a-partition-outside-maximum-permitted-number-of-partitions(46): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78