环境:Oracle 12c
假设要删除的库名为hello,首先登陆上主机。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| sqlplus / as sysdba;
shutdown immediate; startup restrict mount; drop database;
quit;
cd $ORACLE_HOME/dbs
rm -f hc_HELLO.dat ···
find $ORACLE_BASE/ -name $ORACLE_SID
rm -rf xxxx
|