Home > Database > Mysql Tutorial > 使用命令行手动卸载Oracle Database 11gR2

使用命令行手动卸载Oracle Database 11gR2

WBOY
Release: 2016-06-07 16:33:57
Original
1216 people have browsed it

卸载Oracle 有两处方法,一是通过DBCA自动卸载,另一种是通过命令手动卸载,下面说明第二种方法的操作步骤:

卸载Oracle 有两处方法,,一是通过DBCA自动卸载,另一种是通过命令手动卸载,下面说明第二种方法的操作步骤:

1.以sysdba角色登录数据库
$ sqlplus / as sysdba

2.使数据库处于mount状态
SQL> select open_mode from v$database;

检查open_mode状态,如果不是"mount",执行以下命令:

SQL> shutdown immediate;

SQL> startup mount;

3.开启restricted session模式
SQL> alter system enable restricted session;

4.删除数据库
SQL> drop database;

注意点:
1. 数据库必须处于关闭状态
2. 数据库必须启用restricted session模式
3. 命令行drop database 将会删除Oracle的数据库文件 (control、redo、datafile、SPFILE)
4. archivelog 和rman 的备份文件可以通过rman的命令进行删除
5. 命令行drop database 不会删除任何在 raw disk 上的数据文件,需求手动删除
6. 实例注册 (/etc/oratab) 需要手动删除

本文永久更新链接地址:

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template