053530

When an ASM instance receives a SHUTDOWN NORMAL command, what command does it pass on to all database instances that rely on the ASM instances disk groups?
A. TRANSACTIONAL
B. IMMEDIATE
C. ABORT
D. NORMAL
E.None of the above

  

  If you do a normal shutdown of the ASM instance,an error will be returned if any Oracle database is using that ASM instance.Use the shutdown abort command to force the ASM instance to shut down.This will cause all other Oracle database attached to the ASM instance to be shut down with the equivalent of a shutdown abort command.

答案是E abort 类似题053-560

直接搬运一段说明
• NORMALASM 在卸载所有磁盘组并关闭 ASM 实例之前,将等待任何正在进行的 SQL
完成执行。在关闭实例之前, ASM 将等待所有当前连接的用户从该实例断开。如果任何数
据库实例与 ASM 实例连接,则 SHUTDOWN 命令将返回错误并保持 ASM 实例继续运行。
NORMAL 是默认关闭模式。
• IMMEDIATE TRANSACTIONALASM 在卸载所有磁盘组并关闭 ASM 实例之前,将等待
任何正在进行的 SQL 完成执行。 ASM 不等待当前与实例连接的用户断开连接。如果任何
数据库实例与 ASM 实例连接,则 SHUTDOWN 命令将返回错误并保持 ASM 实例继续运
行。
• ABORTASM 实例立即关闭,而不按顺序卸载磁盘组。这将导致下次启动 ASM 时进行
恢复操作。如果有任何数据库实例与 ASM 实例连接,则该数据库实例也将中止。
注:有连接的 RDBMS 实例时,不应用 NORMALIMMEDIATE TRANSACTIONAL 形式的关
闭,而将返回下面的错误:
SQL> shutdown
ORA-15097: cannot SHUTDOWN ASM instance with connected client (process 14372)

原文地址:https://www.cnblogs.com/Babylon/p/7798541.html