ORA-14099 錯誤解決
DB: 11.2.0.3.0
在測試把普通表修改為交換分割槽的時候,出現ORA-14099: all rows in table do not qualify for specified partition
模擬如下:
建立測試表yoon
SQL> create table yoon ( id number primary key,time date ) ;
Table created.
插入資料
SQL> insert into yoon select rownum,created from dba_objects;
74930 rows created.
提交
SQL> commit;
Commit complete.
建立分割槽表
SQL> create table yoon_new ( id number primary key,time date ) partition by range(time)
2 (partition p1 values less than (to_date('2011-10-01','YYYY-DD-MM')),
3 partition p2 values less than (maxvalue));
Table created.
SQL> ALTER TABLE YOON_NEW EXCHANGE PARTITION P1 WITH TABLE YOON;
ALTER TABLE YOON_NEW EXCHANGE PARTITION P1 WITH TABLE YOON
*
ERROR at line 1:
ORA-14099: all rows in table do not qualify for specified partition
原因:資料中含有大於'2011-10-01'的資料,但是分割槽只能存放小區'2011-10-01'的資料,所以報錯
解決方法:
1.刪除yoon_new表,重新建立:
2 (partition p1 values less than (to_date('2015-10-01','YYYY-DD-MM')),
3 partition p2 values less than (maxvalue));
Table created.
SQL> ALTER TABLE YOON_NEW EXCHANGE PARTITION P1 WITH TABLE YOON;
Table altered.
2.SQL> ALTER TABLE YOON_NEW EXCHANGE PARTITION P1 WITH TABLE YOON WITHOUT VALIDATION;
Table altered.
盡量不要第二種方法,有可能會導致資料不準確
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28939273/viewspace-1323252/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Ocelot錯誤解決
- 解決 Python UnicodeEncodeError 錯誤PythonUnicodeError
- dbfread報錯ValueError錯誤解決方法Error
- PbootCMS 404 錯誤解決方法boot
- Linux下錯誤解決方案Linux
- latex 錯誤以及解決方案
- HTTP 錯誤 500.19- Internal Server Error 錯誤解決方法HTTPServerError
- steam磁碟寫入錯誤怎麼解決 steam磁碟寫入錯誤解決方法大全
- dedecms提示500錯誤解決方法
- 解決java.lang.NoSuchMethodError錯誤JavaError
- HTTP代理錯誤怎麼解決?HTTP
- SAXParseException的錯誤解決之二Exception
- ORA-28000錯誤解決方案
- undefined reference to錯誤的解決方法Undefined
- Cocopods的升級錯誤解決
- ORA-12005 錯誤的解決
- PHP curl error 60 錯誤解決PHPError
- linux解決“XXX is not in the sudoers file”錯誤Linux
- TCP網路除錯助手提示錯誤:“1035:未知錯誤” 解決方案TCP除錯
- 解決MySQL server has gone away錯誤的解決方案MySqlServerGo
- 畢設之錯誤解決辦法
- 代理508限制錯誤怎麼解決?
- Excel匯入null錯誤解決方式ExcelNull
- 解決 ngrok 的 Domain 錯誤問題AI
- Hadoop常見錯誤及解決方案Hadoop
- 錯誤解決:Attempting to use uninitialized value VariableZed
- Ubuntu Cannot allocate memory 錯誤解決方案Ubuntu
- Qt報Multiple definition錯誤的解決QT
- Idea編譯錯誤解決辦法Idea編譯
- Go:錯誤 could not launch process: EOF 解決Go
- 錯誤720寬頻連線解決辦法 寬頻連線錯誤程式碼720怎麼解決
- CS0234 錯誤,奇葩bug,解決方案
- nginx出現403錯誤的解決方法Nginx
- centos8安裝docker錯誤解決CentOSDocker
- vue3 解決 ESLint 各型別錯誤VueEsLint型別
- vagrant homestead 錯誤記錄以及解決方案
- 一個 ExpressionChangedAfterItHasBeenCheckedError 錯誤的解決過程ExpressError
- SyntaxError: EOL while scanning string literal錯誤解決ErrorWhile
- 解決 eslint 的 Parsing error: Unexpected token 錯誤EsLintError