如何不使用DBCA在Oracle 11中删除数据库
本文简短的教程,将会向你展示如何不使用DBCA(数据库配置助手)在Oracle 11中删除数据库。
1- 导入数据库的SID,如果没有定义的话
- export ORACLE_SID=database
2- 以操作系统认证连接数据库
- [oracle@Oracle11 ~]$ sqlplus /as sysdba
- SQL*Plus:Release11.2.0.1.0Production on MonDec117:38:022014
- Copyright(c)1982,2009,Oracle.All rights reserved.
- Connected to an idle instance.
3- 启动数据库实例
- SQL> startup
- ORACLE instance started.
- TotalSystemGlobalArea3340451840 bytes
- FixedSize2217952 bytes
- VariableSize1828718624 bytes
- DatabaseBuffers1493172224 bytes
- RedoBuffers16343040 bytes
- Database mounted.
- Database opened.
4- 关闭数据库
- SQL> shutdown immediate;
- Database closed.
- Database dismounted.
- ORACLE instance shut down.
5- 启动独占模式
- SQL> startup mount exclusive restrict
- ORACLE instance started.
- TotalSystemGlobalArea3340451840 bytes
- FixedSize2217952 bytes
- VariableSize1828718624 bytes
- DatabaseBuffers1493172224 bytes
- RedoBuffers16343040 bytes
- Database mounted.
6- 删除数据库
- SQL> drop database;
- Database dropped.
- DisconnectedfromOracleDatabase11gEnterpriseEditionRelease11.2.0.1.0-64bitProduction
- With the Partitioning, OLAP,DataMiningandRealApplicationTesting options
完成!
相关推荐
周嘉笙 2020-11-09
zhuzhufxz 2020-09-16
choice0 2020-07-30
lklong 2020-11-22
oraclemch 2020-11-06
shilukun 2020-10-10
bfcady 2020-08-16
Hody 2020-08-16
FightFourEggs 2020-08-16
数据库设计 2020-08-16
yanghuatong 2020-08-16
dbasunny 2020-08-16
罗罗 2020-08-16
ihuaqiang 2020-08-16
娜娜 2020-07-28
solarspot 2020-07-28
踩风火轮的乌龟 2020-07-26
娜娜 2020-07-20
xwb 2020-07-19
娜娜 2020-07-18
流云追风 2020-07-04
dataminer 2020-06-25
娜娜 2020-06-22
zhangchaoming 2020-06-21