ORA-07473: snclrd: read error when trying to read sgadef.dbf file.
Cause: Read had an error when reading sgadef.dbf file.
Action: Check errno. Verify file exists, and is correct size.
ORA-07473 错误代码表示读取sgadef.dbf文件时出错。此文件是Oracle的库的一部分,用于管理数据库对象。
1.运行oradebug,在数据库中验证sgadef.dbf文件是否存在:
SQL> oradebug setmypid
SQL> oradebug peek/text 0xffff82d9 0 2
2.检查ORACLE_HOME目录中的sgadef.dbf文件。
3.确认$ORACLE_HOME/dbs/sgadef.dbf文件中的正确权限。应允许oracle用户及dba组写。
4.如果文件存在,请检查文件权限和文件系统,并尝试重新编译数据库。
5.重新创建sgadef.dbf文件:
SQL> connect / as sysdba
SQL> alter database create controlfile as’/u01/app/oracle/oradata/orcl/control01.ct’ reuse;
SQL> alter database mount;