24:
site2-DMS1:~ # su - oracle
oracle@site2-DMS1:~> sqlplus / as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Fri Mar 21 10:29:28 2014

Copyright (c) 1982, 2011, Oracle. All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, Oracle Label Security,
OLAP, Data Mining, Oracle Database Vault and Real Application Testing options

SQL> select status from v$instance;

STATUS
------------------------------------
MOUNTED

SQL> show parameter cluster_database;

NAME TYPE
------------------------------------ ---------------------------------
VALUE
------------------------------
cluster_database boolean
TRUE
cluster_database_instances integer
2
SQL> shutdown immediate;
ORA-01109: database not open

Database dismounted.
ORACLE instance shut down.
SQL> sqlplus / as sysdba
SP2-0734: unknown command beginning "sqlplus /..." - rest of line ignored.
SQL> startup;
ORACLE instance started.

Total System Global Area 3290345472 bytes
Fixed Size 2232840 bytes
Variable Size 1962937848 bytes
Database Buffers 1308622848 bytes
Redo Buffers 16551936 bytes
Database mounted.
Database opened.
SQL> alter system set cluster_database=false scope=both
2 ;
alter system set cluster_database=false scope=both
*
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified

SQL> alter system set cluster_database=false scope=spfile;

System altered.

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount restrict;
ORACLE instance started.

Total System Global Area 3290345472 bytes
Fixed Size 2232840 bytes
Variable Size 1962937848 bytes
Database Buffers 1308622848 bytes
Redo Buffers 16551936 bytes
Database mounted.
SQL> select logins,parallel from v$instance;

LOGINS PARALLEL
------------------------------ ---------
RESTRICTED NO

SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, Oracle Label Security,
OLAP, Data Mining, Oracle Database Vault and Real Application Testing options
oracle@site2-DMS1:~> rman target / nocatalog

Recovery Manager: Release 11.2.0.3.0 - Production on Fri Mar 21 10:32:55 2014

Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.

connected to target database: ORA11G (DBID=4235703729, not open)
using target database control file instead of recovery catalog

RMAN> drop database including backups;

database name is "ORA11G" and DBID is 4235703729

Do you really want to drop all backups and the database (enter YES or NO)? NO

RMAN> drop database;

database name is "ORA11G" and DBID is 4235703729

Do you really want to drop the database (enter YES or NO)? YES
database dropped

25:
site2-DMS2:~ # su - oracle
oracle@site2-DMS2:~> sqlplus / as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Fri Mar 21 10:31:34 2014

Copyright (c) 1982, 2011, Oracle. All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, Oracle Label Security,
OLAP, Data Mining, Oracle Database Vault and Real Application Testing options

SQL> select status from v$instance;

STATUS
------------------------------------
MOUNTED

SQL> shutdown immediate;
ORA-01109: database not open

Database dismounted.
ORACLE instance shut down.
SQL>

最新文章

  1. C#将WebBowser控件替换为Chrome内核
  2. 调用discuz编辑器发布帖子显示html代码的解决办法
  3. 用VLC Media Player搭建简单的流媒体服务器
  4. knockout源码分析之执行过程
  5. qt_计算器的简单实现
  6. JQuery 支持 hide 和 show 事件的方法与分析
  7. [问题2014S02] 解答
  8. postgresql 9.6 rc1发布
  9. JS基础知识(基本类型 引用类型)
  10. C3P0数据库连接池的相关bug解决
  11. java重写
  12. Objective-C中字典的使用方法总结
  13. Linux概念架构的理解(转)
  14. httpd日志和日志轮替工具
  15. 第4章 PCIe总线概述
  16. error: cannot lock ref 'refs/remotes/origin/master': unable to resolve reference 'refs/remotes/origin/master': reference broken...
  17. python之路-----多线程与多进程
  18. Django--cookie操作
  19. 关于flexjson将json转为javabean的使用
  20. shell编程awk基础介绍

热门文章

  1. android82 文件下载框架xUtils
  2. Lua的安装
  3. hdu2011java
  4. Java基础知识强化之集合框架笔记59:Map集合之TreeMap(TreeMap<String,String>)的案例
  5. Audit(查看审核/审计信息)
  6. iOS 网络编程:socket
  7. 免费的手机号码归属地查询API接口文档
  8. CentOS 6.4 图文安装教…
  9. Unity3D 商店下载的package存放位置
  10. 浅谈负载均衡之【tomcat分布式session共享】