ORA-14400: 插入的分区关键字未映射到任何分区

执行插入操作时出现的问题如下:
ORA-14400: 插入的分区关键字未映射到任何分区_第1张图片

问题原因:没有找到响应的数据库分区
解决思路:

ALTER TABLE 表名 ADD PARTITION P_20170101 values less than (TIMESTAMP' 2017-01-01 00:00:00')
    tablespace TS_VOP
    pctfree 10
    initrans 1
    maxtrans 255
    storage
    (
      initial 8M
      next 1M
      minextents 1
      maxextents unlimited
)

你可能感兴趣的:(数据库)