1. 程式人生 > >ORA-14400: 插入的分割槽關鍵字未對映到任何分割槽

ORA-14400: 插入的分割槽關鍵字未對映到任何分割槽

執行插入操作時出現的問題如下:
這裡寫圖片描述

問題原因:沒有找到響應的資料庫分割槽
解決思路:

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
)