Search notes:

ORA-14020: this physical attribute may not be specified for a table partition

The following create table statement throws a ORA-14020: this physical attribute may not be specified for a table partition error message:
drop table tq84_14020;
create table tq84_ora_14020 (
    flg   varchar2(1) not null check (flg in ('x', 'y', 'z')),
    val   number
)
partition by list (flg) (
   partition flg_x      values ('x') pctfree 10 disable row movement,
   partition flg_y      values ('y') pctfree 20 enable  row movement,
   partition flg_z      values ('z') pctfree 30 enable  row movement
)
;
This one does not:
create table tq84_no_ora_14020 (
    flg   varchar2(1) not null check (flg in ('x', 'y', 'z')),
    val   number
)
partition by list (flg) (
   partition flg_x      values ('x') pctfree 10,
   partition flg_y      values ('y') pctfree 20,
   partition flg_z      values ('z') pctfree 30
)
enable row movement
;

See also

Oracle: Partitioned tables
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...', 1759473920, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-14020_this-physical-attribute-may-not-be-specified-for-a-table-partition(64): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78