Search notes:

ORA-14155: missing PARTITION, PARTITIONS, SUBPARTITION, or SUBPARTITIONS keyword

create table tq84_ora_14155_test (
   col_one    number,
   col_tow    varchar2(10),
   col_three  date
);
alter table
   tq84_ora_14155_test
rename
   col_tow to col_two;
--
-- ORA-14155: missing PARTITION, PARTITIONS, SUBPARTITION, or SUBPARTITIONS keyword
--
alter table
   tq84_ora_14155_test
rename COLUMN
   col_tow to col_two;
--
-- Table TQ84_ORA_14155_TEST altered.
--
drop table tq84_ora_14155_test;

See also

Other Oracle error messages

Index