分別用deinstall和命令列刪除Oracle資料庫軟體
1. deinstall工具
1.1. 工具介紹
deinstall工具是oracle提供的資料庫軟體解除安裝工具,使用方法可以參考官方文件路徑:Installing and Upgrading→Database Installation Guide for Linux→ 7 Removing Oracle Database Software
具體路徑為:
oracle總共提供了2種使用deinstall的方法:
(1)如果Oracle安裝無誤,可以直接呼叫$ORACLE_HOME下的指令碼$ORACLE_HOME/deinstall/deinstall
(2)如果Oracle安裝有問題或者是其他情況,可以下載獨立的工具後,然後使用工具進行解除安裝。
官方文件給出的下載路徑:
1.前往URL:
2.在Oracle Database 11g Release 2下載區域找到對應的平臺版本,點選”See All”,在新開啟的頁面底部可以下載到資料庫解除安裝工具。
另外,使用單獨的deinstall進行解除安裝的時候,必須指定-home引數,檢視官方文件說明:
- -home
- Use this flag to indicate the home path of the Oracle home to check or deinstall. To deinstall Oracle software using the deinstall command in the Oracle home you plan to deinstall, provide a parameter file in another location, and do not use the -home flag.
- If you run deinstall from the $ORACLE_HOME/deinstall path, then the -home flag is not required because the tool knows from which home it is being run. If you use the standalone version of the tool, then -home is mandatory.
簡單的說,就是使用第一種方法,可以直接執行指令碼:
- $ORACLE_HOME/deinstall/deinstall
使用第二種方法,必須帶上-home引數:
- $ORACLE_HOME/deinstall/deinstall -home $ORACLE_HOME
這裡我們將會使用第一種方法進行解除安裝資料庫,當然,第二種方法也是類似,只不過需要單獨下載工具。
1.2. 環境準備
檢視伺服器的環境變數
- [oracle@DB074 ~]$env | grep ORA
- ORACLE_SID=cams
- ORACLE_BASE=/u01/app/oracle
- ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
檢視監聽的狀態,如監聽啟動,則關閉監聽。
-
[oracle@DB074 ~]$ lsnrctl status
-
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 11-SEP-2017 14:45:16
-
Copyright (c) 1991, 2013, Oracle. All rights reserved.
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DB074.bj)(PORT=1521)))
-
STATUS of the LISTENER
-
------------------------
-
Alias LISTENER
-
Version TNSLSNR for Linux: Version 11.2.0.4.0 - Production
-
Start Date 11-SEP-2017 14:44:32
-
Uptime 0 days 0 hr. 0 min. 44 sec
-
Trace Level off
-
Security ON: Local OS Authentication
-
SNMP OFF
-
Listener Parameter File /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
-
Listener Log File /u01/app/oracle/diag/tnslsnr/DB074/listener/alert/log.xml
-
Listening Endpoints Summary...
-
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DB074.bj)(PORT=1521)))
-
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
-
Services Summary...
-
Service "cams" has 1 instance(s).
-
Instance "cams", status READY, has 1 handler(s) for this service...
-
Service "camsXDB" has 1 instance(s).
-
Instance "cams", status READY, has 1 handler(s) for this service...
- The command completed successfully
-
-
-
[oracle@DB074 ~]$ lsnrctl stop
-
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 11-SEP-2017 14:45:29
-
Copyright (c) 1991, 2013, Oracle. All rights reserved.
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DB074.bj)(PORT=1521)))
- The command completed successfully
-
-
-
[oracle@DB074 ~]$ lsnrctl status
-
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 11-SEP-2017 14:45:36
-
Copyright (c) 1991, 2013, Oracle. All rights reserved.
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DB074.bj)(PORT=1521)))
-
TNS-12541: TNS:no listener
-
TNS-12560: TNS:protocol adapter error
-
TNS-00511: No listener
-
Linux Error: 111: Connection refused
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
-
TNS-12541: TNS:no listener
-
TNS-12560: TNS:protocol adapter error
-
TNS-00511: No listener
- Linux Error: 2: No such file or directory
檢視資料庫例項的狀態,如資料庫例項啟動,則關閉資料庫例項。
-
[oracle@DB074 ~]$ ps -ef | grep smon
-
oracle 3559 1 0 14:44 ? 00:00:00 ora_smon_cams
-
oracle 3662 31107 0 14:47 pts/1 00:00:00 grep smon
-
[oracle@DB074 ~]$ sqlplus / as sysdba
-
SQL*Plus: Release 11.2.0.4.0 Production on Mon Sep 11 14:47:25 2017
-
Copyright (c) 1982, 2013, Oracle. All rights reserved.
-
Connected to:
-
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
-
With the Partitioning, OLAP, Data Mining and Real Application Testing options
-
SYS@cams>shutdown immediate;
-
Database closed.
-
Database dismounted.
-
ORACLE instance shut down.
-
SYS@cams>exit
-
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
-
With the Partitioning, OLAP, Data Mining and Real Application Testing options
-
[oracle@DB074 ~]$ ps -ef | grep smon
- oracle 3675 31107 0 14:47 pts/1 00:00:00 grep smon
最後,確保沒有oracle程式啟動
-
[oracle@DB074 ~]$ ps -ef | grep ora
-
root 1987 1945 0 Sep09 ? 00:01:16 hald-addon-storage: polling /dev/sr0 (every 2 sec)
-
oracle 3677 31107 0 14:48 pts/1 00:00:00 ps -ef
-
oracle 3678 31107 0 14:48 pts/1 00:00:00 grep ora
-
root 31106 30170 0 11:34 pts/1 00:00:00 su - oracle
- oracle 31107 31106 0 11:34 pts/1 00:00:00 –bash
1.3. 執行deinstall解除安裝指令碼
在oracle使用者下,執行deinstall指令碼
- [oracle@DB074 ~]$ $ORACLE_HOME/deinstall/deinstall
整個互動過程如下:
-
[oracle@DB074 ~]$ $ORACLE_HOME/deinstall/deinstall
-
Checking for required files and bootstrapping ...
-
Please wait ...
-
Location of logs /tmp/deinstall2017-09-11_02-50-04PM/logs/
-
############ ORACLE DEINSTALL & DECONFIG TOOL START ############
-
######################### CHECK OPERATION START #########################
-
## [START] Install check configuration ##
-
Checking for existence of the Oracle home location /u01/app/oracle/product/11.2.0/db_1
-
Oracle Home type selected for deinstall is: Oracle Single Instance Database
-
Oracle Base selected for deinstall is: /u01/app/oracle
-
Checking for existence of central inventory location /u01/app/oraInventory
-
Checking for sufficient temp space availability on node(s) : 'DB074'
-
## [END] Install check configuration ##
-
Network Configuration check config START
-
Network de-configuration trace file location: /tmp/deinstall2017-09-11_02-50-04PM/logs/netdc_check2017-09-11_02-50-10-PM.log
-
Specify all Single Instance listeners that are to be de-configured [LISTENER]:(這裡需要確認監聽器名稱,預設值沒問題,直接回車)
-
Network Configuration check config END
-
Database Check Configuration START
-
Database de-configuration trace file location: /tmp/deinstall2017-09-11_02-50-04PM/logs/databasedc_check2017-09-11_02-51-44-PM.log
-
Use comma as separator when specifying list of values as input
-
Specify the list of database names that are configured in this Oracle home [cams]:(這裡需要確認資料庫名稱,預設值沒問題,直接回車)
-
###### For Database 'cams' ######
-
Single Instance Database
-
The diagnostic destination location of the database: /u01/app/oracle/diag/rdbms/cams
-
Storage type used by the Database: FS
-
Database file location: /u01/app/oracle/oradata/cams,/u01/app/oracle/fast_recovery_area/cams,/home/oracle/cams/tablespace
-
Fast recovery area location: /u01/app/oracle/fast_recovery_area/CAMS
-
database spfile location: /u01/app/oracle/product/11.2.0/db_1/dbs/spfilecams.ora
-
The details of database(s) cams have been discovered automatically. Do you still want to modify the details of cams database(s)? [n]:(這裡需要確認資料庫詳細資訊,預設值沒問題,不需要修改,直接回車)
-
Database Check Configuration END
-
Enterprise Manager Configuration Assistant START
-
EMCA de-configuration trace file location: /tmp/deinstall2017-09-11_02-50-04PM/logs/emcadc_check2017-09-11_02-52-24-PM.log
-
Checking configuration for database cams
-
Enterprise Manager Configuration Assistant END
-
Oracle Configuration Manager check START
-
OCM check log file location : /tmp/deinstall2017-09-11_02-50-04PM/logs//ocm_check4203.log
-
Oracle Configuration Manager check END
-
######################### CHECK OPERATION END #########################
-
####################### CHECK OPERATION SUMMARY #######################
-
Oracle Home selected for deinstall is: /u01/app/oracle/product/11.2.0/db_1
-
Inventory Location where the Oracle home registered is: /u01/app/oraInventory
-
Following Single Instance listener(s) will be de-configured: LISTENER
-
The following databases were selected for de-configuration : cams
-
Database unique name : cams
-
Storage used : FS
-
Will update the Enterprise Manager configuration for the following database(s): cams
-
No Enterprise Manager ASM targets to update
-
No Enterprise Manager listener targets to migrate
-
Checking the config status for CCR
-
Oracle Home exists with CCR directory, but CCR is not configured
-
CCR check is finished
-
Do you want to continue (y - yes, n - no)? [n]: y(輸入y,然後回車)
-
A log of this session will be written to: '/tmp/deinstall2017-09-11_02-50-04PM/logs/deinstall_deconfig2017-09-11_02-50-09-PM.out'
-
Any error messages from this session will be written to: '/tmp/deinstall2017-09-11_02-50-04PM/logs/deinstall_deconfig2017-09-11_02-50-09-PM.err'
-
######################## CLEAN OPERATION START ########################
-
Enterprise Manager Configuration Assistant START
-
EMCA de-configuration trace file location: /tmp/deinstall2017-09-11_02-50-04PM/logs/emcadc_clean2017-09-11_02-52-24-PM.log
-
Updating Enterprise Manager Database Control configuration for database cams
-
Updating Enterprise Manager ASM targets (if any)
-
Updating Enterprise Manager listener targets (if any)
-
Enterprise Manager Configuration Assistant END
-
Database de-configuration trace file location: /tmp/deinstall2017-09-11_02-50-04PM/logs/databasedc_clean2017-09-11_02-53-16-PM.log
-
Database Clean Configuration START cams
-
This operation may take few minutes.
-
Database Clean Configuration END cams
-
Network Configuration clean config START
-
Network de-configuration trace file location: /tmp/deinstall2017-09-11_02-50-04PM/logs/netdc_clean2017-09-11_02-54-11-PM.log
-
De-configuring Single Instance listener(s): LISTENER
-
De-configuring listener: LISTENER
-
Stopping listener: LISTENER
-
Warning: Failed to stop listener. Listener may not be running.
-
Deleting listener: LISTENER
-
Listener deleted successfully.
-
Listener de-configured successfully.
-
De-configuring backup files...
-
Backup files de-configured successfully.
-
The network configuration has been cleaned up successfully.
-
Network Configuration clean config END
-
Oracle Configuration Manager clean START
-
OCM clean log file location : /tmp/deinstall2017-09-11_02-50-04PM/logs//ocm_clean4203.log
-
Oracle Configuration Manager clean END
-
Setting the force flag to false
-
Setting the force flag to cleanup the Oracle Base
-
Oracle Universal Installer clean START
-
Detach Oracle home '/u01/app/oracle/product/11.2.0/db_1' from the central inventory on the local node : Done
-
Delete directory '/u01/app/oracle/product/11.2.0/db_1' on the local node : Done
-
Delete directory '/u01/app/oraInventory' on the local node : Done
-
Delete directory '/u01/app/oracle' on the local node : Done
-
Oracle Universal Installer cleanup was successful.
-
Oracle Universal Installer clean END
-
## [START] Oracle install clean ##
-
Clean install operation removing temporary directory '/tmp/deinstall2017-09-11_02-50-04PM' on node 'DB074'
-
## [END] Oracle install clean ##
-
######################### CLEAN OPERATION END #########################
-
####################### CLEAN OPERATION SUMMARY #######################
-
Updated Enterprise Manager configuration for database cams
-
Successfully de-configured the following database instances : cams
-
Following Single Instance listener(s) were de-configured successfully: LISTENER
-
Cleaning the config for CCR
-
As CCR is not configured, so skipping the cleaning of CCR configuration
-
CCR clean is finished
-
Successfully detached Oracle home '/u01/app/oracle/product/11.2.0/db_1' from the central inventory on the local node.
-
Successfully deleted directory '/u01/app/oracle/product/11.2.0/db_1' on the local node.
-
Successfully deleted directory '/u01/app/oraInventory' on the local node.
-
Successfully deleted directory '/u01/app/oracle' on the local node.
-
Oracle Universal Installer cleanup was successful.
-
- (在deinstall工具執行完之後,需要用root完成刪除的內容)
-
Run 'rm -rf /etc/oraInst.loc' as root on node(s) 'DB074' at the end of the session.
-
Run 'rm -rf /opt/ORCLfmap' as root on node(s) 'DB074' at the end of the session.
-
Run 'rm -rf /etc/oratab' as root on node(s) 'DB074' at the end of the session.
-
Oracle deinstall tool successfully cleaned up temporary directories.
-
#######################################################################
- ############# ORACLE DEINSTALL & DECONFIG TOOL END #############
根據最後的提示資訊,切換到root使用者,刪除相應的檔案
-
[oracle@DB074 ~]$ su - root
-
Password:
-
[root@DB074 ~]# rm -rf /etc/oraInst.loc
-
[root@DB074 ~]# rm -rf /opt/ORCLfmap
- [root@DB074 ~]# rm -rf /etc/oratab
切換到oracle使用者,檢查$ORACLE_BASE路徑下檔案:
-
[root@DB074 oracle]# su - oracle
-
[oracle@DB074 ~]$ cd $ORACLE_BASE
-
-bash: cd: /u01/app/oracle: No such file or directory
-
[oracle@DB074 ~]$ cd /u01/app/
-
[oracle@DB074 app]$ ll
-
total 216
-
drwxr-xr-x 7 oracle oinstall 4096 Aug 27 2013 database
-
drwxr-xr-x 2 oracle oinstall 4096 May 9 13:31 dump
- -rw-r--r-- 1 root root 210877 Feb 6 2017 pdksh-5.2.14-37.el5_8.1.x86_64.rpm
顯然,Oracle資料庫軟體已經刪除完畢。
2. 命令行
假定伺服器原先是資料庫伺服器,現在要回收作為應用伺服器,需要將資料庫軟體等完全刪除。
(1)前期準備工作
將需要做保留的檔案進行備份,如資料庫資料,自定義資料庫指令碼等。
(2)檢視伺服器的環境變數
-
[oracle@DB074 ~]$ env | grep ORA
-
ORACLE_SID=cams
-
ORACLE_BASE=/u01/app/oracle
- ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
(3)檢視監聽的狀態,如監聽啟動,則關閉監聽。
-
[oracle@DB074 ~]$ lsnrctl status
-
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 11-SEP-2017 14:45:16
-
Copyright (c) 1991, 2013, Oracle. All rights reserved.
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DB074.bj)(PORT=1521)))
-
STATUS of the LISTENER
-
------------------------
-
Alias LISTENER
-
Version TNSLSNR for Linux: Version 11.2.0.4.0 - Production
-
Start Date 11-SEP-2017 14:44:32
-
Uptime 0 days 0 hr. 0 min. 44 sec
-
Trace Level off
-
Security ON: Local OS Authentication
-
SNMP OFF
-
Listener Parameter File /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
-
Listener Log File /u01/app/oracle/diag/tnslsnr/DB074/listener/alert/log.xml
-
Listening Endpoints Summary...
-
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DB074.bj)(PORT=1521)))
-
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
-
Services Summary...
-
Service "cams" has 1 instance(s).
-
Instance "cams", status READY, has 1 handler(s) for this service...
-
Service "camsXDB" has 1 instance(s).
-
Instance "cams", status READY, has 1 handler(s) for this service...
-
The command completed successfully
-
[oracle@DB074 ~]$ lsnrctl stop
-
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 11-SEP-2017 14:45:29
-
Copyright (c) 1991, 2013, Oracle. All rights reserved.
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DB074.bj)(PORT=1521)))
-
The command completed successfully
-
[oracle@DB074 ~]$ lsnrctl status
-
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 11-SEP-2017 14:45:36
-
Copyright (c) 1991, 2013, Oracle. All rights reserved.
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DB074.bj)(PORT=1521)))
-
TNS-12541: TNS:no listener
-
TNS-12560: TNS:protocol adapter error
-
TNS-00511: No listener
-
Linux Error: 111: Connection refused
-
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
-
TNS-12541: TNS:no listener
-
TNS-12560: TNS:protocol adapter error
-
TNS-00511: No listener
-
Linux Error: 2: No such file or directory
-
- (4)檢視資料庫例項的狀態,如資料庫例項啟動,則關閉資料庫例項。
-
-
[oracle@DB074 ~]$ ps -ef | grep smon
-
oracle 3559 1 0 14:44 ? 00:00:00 ora_smon_cams
-
oracle 3662 31107 0 14:47 pts/1 00:00:00 grep smon
-
[oracle@DB074 ~]$ sqlplus / as sysdba
-
SQL*Plus: Release 11.2.0.4.0 Production on Mon Sep 11 14:47:25 2017
-
Copyright (c) 1982, 2013, Oracle. All rights reserved.
-
Connected to:
-
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
-
With the Partitioning, OLAP, Data Mining and Real Application Testing options
-
SYS@cams>shutdown immediate;
-
Database closed.
-
Database dismounted.
-
ORACLE instance shut down.
-
SYS@cams>exit
-
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
-
With the Partitioning, OLAP, Data Mining and Real Application Testing options
-
[oracle@DB074 ~]$ ps -ef | grep smon
- oracle 3675 31107 0 14:47 pts/1 00:00:00 grep smon
-
[oracle@DB074 ~]$ ps -ef | grep smon
(5)檢查確保沒有oracle程式啟動
-
[oracle@DB074 ~]$ ps -ef | grep ora
-
root 1987 1945 0 Sep09 ? 00:01:16 hald-addon-storage: polling /dev/sr0 (every 2 sec)
-
oracle 3677 31107 0 14:48 pts/1 00:00:00 ps -ef
-
oracle 3678 31107 0 14:48 pts/1 00:00:00 grep ora
-
root 31106 30170 0 11:34 pts/1 00:00:00 su - oracle
- oracle 31107 31106 0 11:34 pts/1 00:00:00 –bash
(6)切換到root使用者,完整刪除安裝目錄(如擔心手滑,部分操作可以在oracle使用者下完成)
-
[root@DB074 oracle]# cd /
- [root@DB074 oracle]# rm -rf u01/
(7)將bin下面的檔案刪除,如果不知道具體在哪個bin路徑下(有/usr/bin,/usr/local/bin等),可以先查詢下系統路徑
-
[root@DB074 /]# find / -name oraenv
-
/usr/local/bin/oraenv
-
[root@DB074 /]# find / -name dbhome
-
/usr/local/bin/dbhome
-
[root@DB074 /]# find / -name coraenv
-
/usr/local/bin/coraenv
-
[root@DB074 /]# rm -rf /usr/local/bin/oraenv
-
[root@DB074 /]# rm -rf /usr/local/bin/dbhome
- [root@DB074 /]# rm -rf /usr/local/bin/coraenv
(8)刪除配置檔案
-
[root@DB074 ~]# rm -rf /etc/oraInst.loc
-
[root@DB074 ~]# rm -rf /opt/ORCLfmap
- [root@DB074 ~]# rm -rf /etc/oratab
(9)刪除home目錄
- [root@DB074 ~]# rm -rf /home/oracle
(10)刪除oracle使用者和使用者組
-
[root@DB074 ~]# userdel -f oracle
-
[root@DB074 ~]# groupdel -f oinstall
- [root@DB074 ~]# groupdel -f dba
(11)檢查是否有自啟動服務,進行刪除
-
[root@DB074 ~]#chkconfig –list
- [root@DB074 ~]#chkconfig --del XXX
3. 方法對比
(1)兩種方法都能完成資料庫軟體的刪除,使用deinstall工具的方法比較柔和,使用命令列刪除的方法比較暴力。
(2)第一種方法刪除後會有部分資訊保留,如環境變數、安裝軟體、自定義目錄等;第二種方法可以對資料庫進行完整刪除,也可以只刪除部分內容。當然,兩種方法沒有好壞之分,可以視情況相結合使用。
(3)第二種方法操作過程中會多次在root使用者下執行rm -rf命令,建議使用者小心操作。
(4)文中沒有嘗試使用下載的deinstall工具進行解除安裝操作,讀者可以在工作之餘在測試環境中進行嘗試。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31394774/viewspace-2144813/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何手工刪除oracle資料庫和軟體Oracle資料庫
- 【RAC】刪除RAC資料庫節點(四)——刪除資料庫軟體及ASM軟體資料庫ASM
- deinstall oracle 資料庫Oracle資料庫
- 【RAC】刪除RAC資料庫節點(七)——刪除Oracle叢集軟體資料庫Oracle
- 命令列刪除Oracle例項命令列Oracle
- AIX 刪除資料庫及叢集軟體AI資料庫
- 使用Deinstall專用工具刪除Oracle DatabaseOracleDatabase
- 如何刪除oracle資料庫Oracle資料庫
- 手工刪除oracle資料庫Oracle資料庫
- 批量刪除Oracle資料庫的資料Oracle資料庫
- oracle手動刪除資料庫Oracle資料庫
- 手動刪除oracle資料庫Oracle資料庫
- 批次刪除WordPress文章和頁面的資料庫命令和從後臺直接刪除資料庫
- windows下Oracle資料庫完全刪除WindowsOracle資料庫
- Oracle資料庫使用者刪除Oracle資料庫
- oracle資料庫備份刪除操作Oracle資料庫
- Oracle批量建立、刪除資料庫表Oracle資料庫
- 【刪除】【Oracle】完美刪除Windows系統上的Oracle軟體OracleWindows
- [Oracle]Oracle資料庫資料被修改或者刪除恢復資料Oracle資料庫
- ORACLE刪除-表分割槽和資料Oracle
- 刪除linux下的oracle資料庫LinuxOracle資料庫
- oracle資料庫建立、刪除索引等操作Oracle資料庫索引
- 6.12php對資料庫的刪除和批量刪除PHP資料庫
- indexedDB 刪除資料庫Index資料庫
- SRVCTL 刪除和新增資料庫服務資料庫
- 【RAC】刪除RAC資料庫節點(一)——刪除資料庫例項資料庫
- 【北亞資料恢復】誤刪除oracle表和誤刪除oracle表資料的資料恢復方法資料恢復Oracle
- 【RAC】刪除RAC資料庫節點(六)——刪除Oracle叢集服務資料庫Oracle
- 恢復Oracle資料庫誤刪除資料的語句Oracle資料庫
- 已為資料庫映象啟動資料庫,必須刪除資料庫映象才能刪除該資料庫資料庫
- Linux 刪除資料夾命令Linux
- 面試題: 資料庫:delete和trancate刪除表記錄的區別面試題資料庫delete
- Oracle設定和刪除不可用列Oracle
- Oracle 增加 修改 刪除 列Oracle
- 2.11 刪除資料庫資料庫
- 刪除資料庫指令碼資料庫指令碼
- 手動刪除資料庫資料庫
- MongoDB 資料庫建立刪除、表(集合)建立刪除、資料增刪改查MongoDB資料庫