誤刪除dual表的解決辦法
1 ) Error 980 during db open is causing the shut down of the database
2 ) Need to create the Dual Table to resolve the issue (which was not possible in the mount stage)
Workaround
=========
3 ) Set the following parameter in the init.ora
replication_dependency_tracking = FALSE
4 ) Startup the database
5 ) Create the Dual Table and Dual Public Synonym
CREATE TABLE "SYS"."DUAL"
( "DUMMY" VARCHAR2(1)
) PCTFREE 10 PCTUSED 4;
Insert Into Dual Values ('X');
Commit;
Grant Select On Dual To Public;
6 ) Remove the above parameter and restart the database
Note :- Dual table should not be dropped in any case , as it can lead to serious problems
Errors
加引數replication_dependency_tracking = FALSE
就能open了。然後用sys
create table sys.DUAL(DUMMY varchar2(1));
insert into dual values('X');
commit;
grant select on dual to public;
把引數去了
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/18921899/viewspace-1017477/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- dual系統表被刪除的解決方法
- 非歸檔資料檔案誤刪除解決辦法
- mac檔案刪除不了的解決辦法Mac
- 刪除mysql relay-log 的解決辦法MySql
- 調變解調器已刪除的解決辦法
- [20141218]誤操作刪除dual表的恢復.txt
- emca刪除em時間過長的解決辦法
- 新增刪除程式打不開怎麼辦 新增刪除程式報錯解決辦法
- win10任務檢視記錄無法刪除的解決辦法Win10
- MySQL大表刪除解決方案MySql
- dns錯誤怎麼辦 dns錯誤的解決辦法DNS
- SAP錯誤提示解決辦法
- scp出現錯誤的解決辦法
- samba一個錯誤的解決辦法!Samba
- 解決無法刪除表,提示被外來鍵約束引用
- win10輸入法無法刪除怎麼辦 win10輸入法刪不掉解決方法Win10
- kingsoft資料夾可以刪除嗎 kingsoft資料夾刪不掉的解決辦法
- 誤刪libc提示Kernel panic not syncing: Attempted to kill init解決辦法
- 在Windows XP 作業系統下列印任務無法刪除解決辦法Windows作業系統
- 連線oracle錯誤解決辦法Oracle
- nginxFastCGI錯誤Primaryscriptunknown解決辦法NginxAST
- Unable to locate package錯誤解決辦法Package
- oracle 1455 錯誤解決辦法Oracle
- 畢設之錯誤解決辦法
- 表碎片起因及解決辦法
- iOS路上遇到的錯誤及解決辦法iOS
- ORA-12705,錯誤的解決辦法
- SPFILE引數修改錯誤的解決辦法
- ORA-12170錯誤的解決辦法
- 資料夾刪除不了怎麼辦?資料夾刪除不了的解決方法
- Oracle dual表 詳解Oracle
- ORACLE DUAL表詳解Oracle
- 誤刪除資料了怎麼辦?小編交易誤刪除資料的恢復方法
- win10誤刪登錄檔無法開機怎麼辦 恢復誤刪登錄檔的解決方法Win10
- sqldps病毒的手動刪除辦法SQL
- Eclipse除錯找不到源的解決辦法Eclipse除錯
- Idea編譯錯誤解決辦法Idea編譯
- PHP編譯錯誤及解決辦法PHP編譯