ORA-15308: could not access ASM SPFILE in RDBMS instance ORACLE 报错 故障修复 远程处理

文档解释

ORA-15308: could not access ASM SPFILE in RDBMS instance

Cause: A relational database management system (RDBMS) instance attempted to access an Automatic Storage Management (ASM) SPFILE.

Action: Connect to an ASM instance and reissue the command. Alternatively, specify an RDBMS SPFILE.

ORA-15308是由于ORACLE服务器上的RDBMS实例无法访问ASM SPFILE而引起的一种访问错误,

官方解释

ORA-15308:无法访问ASM SPFILE“”

从RDBMS实例访问ASM SPFILE失败。在将ASM SPFILE从一个目录复制到另一个目录时,可能会遇到此错误。

常见案例

1.当RDBMS实例无法访问ASM SPFILE时,可能会出现ORA-15308错误。

2.当从ASM CRS核心目录复制ASM SPFILE到备份目录时,可能会出现此错误。

一般处理方法及步骤

1.将ASM的SPFILE移动回到正确的位置,使RDBMS实例可以访问。

2.使用以下SQL *Plus语句编辑ASM spfile:

SQL> alter system set spfile=” scope=spfile;

3.根据RDBMS实例中相应ASM元数据更新spfile:

SQL> alter system set asm_diskgroups=” scope=spfile;

4.在ASM实例上重新启动RDBMS实例以完成更改:

SQL> alter system restart;


数据运维技术 » ORA-15308: could not access ASM SPFILE in RDBMS instance ORACLE 报错 故障修复 远程处理