天天看點

ORACLE手工删除資料庫

Step 1: .獲得控制檔案、資料檔案,日志檔案等相關資訊

擷取這些資訊,一方面是為了後面的建庫做參考,另外一個是為了驗證後面一些操作,如果這些都沒有必要,其實是可以可以跳過這一步的。

Step 2: 停止監聽服務和OEM

Step 3: 關閉資料庫執行個體

Step 4:啟動到資料庫執行個體到mount狀态

使用exclusive restart或普通模式都可以

Step 5: 修改參數為允許受限的會話模式

這一步驟是必須的,否則在drop database時會報ORA-01586: database must be mounted EXCLUSIVE and not open for this operation

Step 6:使用drop database指令來清除資料庫

SQL> drop database;

drop database 指令會删除控制檔案和在控制檔案中所列的資料檔案,如果資料庫正在使用spfile檔案,則一并删除。

備份檔案和歸檔日志檔案不會被删除,我們可以之後通過RMAN進行删除。

如果資料庫是建立在裸裝置上,那麼這個指令不會删除指定裸裝置上的檔案。

# deletes all database files, both ASM and non-ASM When you issue this statement, Oracle Database drops the database and deletes all control files and datafiles listed in the control file. If the database used a server parameter file (spfile), it is also deleted. Archived logs and backups are not removed, but you can use Recovery Manager (RMAN) to remove them. If the database is on raw disks, this statement does not delete the actual raw disk special files. DROP DATABASE The DROP DATABASE command deletes these files from operating system. * Datafiles * Online Redo Log Files * Controlfiles * SPFILE (if it exists) The DROP DATABASE command does not delete the following files: * init.ora (text version of the Oracle initialization file) * password file * entries in listener files * entries in oratab file

其實最好是在執行drop database指令時,檢視alert_$ORACLE_SID的輸出内容,即可有個大概的了解。在metlink上看到一個手工删除資料檔案、聯機重做日志、控制檔案的腳本,如下所示,這個也可以作為一個參考。

執行上面腳本就能得到類似下面輸出的内容。當然,這個腳本必須在前面步驟之前執行。

rm -f $ORACLE_BASE/admin/$ORACLE_SID

rm -f /ORATEST/oracle/admin/bdump

rm -f /ORATEST/oracle/admin/cdump

rm -f /ORATEST/oracle/admin/udump

rm -f /ORATEST/oracle/product/10.1/rdbms/audit

rm -f /ORATEST/oradata/control01.ctl

rm -f /ORATEST/oradata/control02.ctl

rm -f /ORATEST/oradata/control03.ctl

rm -f /ORATEST/oradata/data01.dbf

rm -f /ORATEST/oradata/data02.dbf

rm -f /ORATEST/oradata/redo01.log

rm -f /ORATEST/oradata/redo02.log

rm -f /ORATEST/oradata/redo03.log

rm -f /ORATEST/oradata/sysaux01.dbf

rm -f /ORATEST/oradata/system01.dbf

rm -f /ORATEST/oradata/undotbs01.dbf

rm -f /ORATEST/oradata/users01.dbf

rm -f ?/dbs/arch

Step 7:手動清理相關檔案

Step 8.清理監聽相關檔案

Step 9.修改oratab檔案以及.bash_profile

這個步驟不是必須的,是情況和需要而定。

$ vi /etc/oratab --去掉執行個體相關的設定

$ vi ~/.bash_profile --去掉執行個體相關的設定

參考資料:

<a href="http://blog.csdn.net/leshami/article/details/6454479">http://blog.csdn.net/leshami/article/details/6454479</a>

<a href="https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=508865219788761&amp;id=443822.1&amp;displayIndex=10&amp;_afrWindowMode=0&amp;_adf.ctrl-state=38ojq5hbc_203">https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=508865219788761&amp;id=443822.1&amp;displayIndex=10&amp;_afrWindowMode=0&amp;_adf.ctrl-state=38ojq5hbc_203</a>