執行drop table base purge出現ora_00604
為了學習大表插入相關的最佳化方法,建立了一個使用者和對應的表空間;當進入這個新建的使用者,刪除RT的表時,報如上錯誤,處理方法如下:
1,以sysdba進入oracle資料庫,檢視是否有對應的表空間狀態不正常
select file#,name,status from v$datafile;
2,針對以上查詢,發現是undo表空間(我以前新新增的另一個undo表空間),狀態處於offline,下來就好辦了
alter tablespace undotbs2 online;
結局:問題得以處理
小結:說明要是undo表空間不正常,資料庫是不能正常工作,大家可以思考一下,呵呵!
1,以sysdba進入oracle資料庫,檢視是否有對應的表空間狀態不正常
select file#,name,status from v$datafile;
2,針對以上查詢,發現是undo表空間(我以前新新增的另一個undo表空間),狀態處於offline,下來就好辦了
alter tablespace undotbs2 online;
結局:問題得以處理
小結:說明要是undo表空間不正常,資料庫是不能正常工作,大家可以思考一下,呵呵!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-630058/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- DROP TABLE ** CASCADE CONSTRAINTS PURGEAI
- Oracle10g 回收站及徹底刪除table : drop table xx purge 以及drop flashOracle
- oracle drop table purge無備份bbed恢復(1/3)Oracle
- oracle drop table purge無備份bbed恢復(2/3)Oracle
- oracle drop table purge無備份bbed恢復(3/3)Oracle
- 10g包含同名觸發器的表執行PURGE TABLE出錯觸發器
- Oracle10g 回收站及徹底刪除table : drop table xx purge 以及flashbackOracle
- Oracle Drop表(purge)恢復(ODU)Oracle
- Oracle Purge和drop的區別Oracle
- MySQL:Innodb purge執行緒略解MySql執行緒
- drop table和truncate table的區別
- flashback drop/query/table/database/archiveDatabaseHive
- How To Efficiently Drop A Table With Many Extents
- oracle 誤刪表 drop tableOracle
- drop apply INSTANTIATION for one tableAPP
- audit drop table為什麼不行
- Drop table cascade constraintsAI
- [doc]How To Efficiently Drop A Table With Many Extents
- 深入解析 oracle drop table內部原理Oracle
- Oracle OCP 1Z0-053 Q271(Purge Table)Oracle
- dbms_shared_pool.purge 清理某個SQL執行計劃SQL
- Thread.join()方法實現main()方法等待所有子執行緒執行完成[base jdk8]threadAI執行緒JDK
- MySQL資料災難挽救之drop tableMySql
- Drop Table Fails With ORA-600 [15264]AI
- Jmeter執行後出現亂碼JMeter
- 執行Bex 出現 61704 錯誤
- mysql執行truncate drop 時卡死問題解決MySql
- truncate table執行很慢的原因分析
- MySQL 5.6 drop database時,table metadata lock等待MySqlDatabase
- 執行jdonMVC示例出現了錯誤MVC
- Truncate table 詳解及與delete,drop 的區別delete
- Truncate table詳解及與delete,drop的區別delete
- 資料庫審計(create/alter/drop table、user、tablespace)資料庫
- InnoDB purge原理--哪些undo log可purge
- v$lock之alter table drop column與alter table set unused column區別系列五
- 執行hadoop命令時,出現異常Hadoop
- 外來鍵約束drop table cascade constraintsAI
- 主子表drop table constraints cascade的測試AI