Home > Database > Mysql Tutorial > Oracle 11g Alert log 文件位置的问题

Oracle 11g Alert log 文件位置的问题

WBOY
Release: 2016-06-07 17:22:03
Original
980 people have browsed it

Oracle至11g后的alert log有所变动,oracle数据库以XML与传统的文本两种格式提供Alert log日志了。新的日志位置由Automatic Diag

Oracle至11g后的alert log有所变动,oracle数据库以XML与传统的文本两种格式提供Alert log日志了。

新的日志位置由Automatic Diagnostic Repository(ADR)决定存放目录,可以通过信的初始化参数DIAGNOSTIC_DEST控制ADR base的位置。

SQL> show parameter diagnostic_dest;

NAME                                TYPE      VALUE

------------------------------------ ----------- ------------------------------

diagnostic_dest                    string    /u01/sys_software/oracle

SQL>

如果没有设置这个初始化参数的位置,,而有设置ORACLE_BASE环境变量的话,那么$oracle_home/log即为DIAGNOSTIC_DEST的目录。

Alert log文件父目录的位置在:

$ORACLE_BASE/diag/product_type/product_id/instance_id

这个目录下面有alter、trace、cdump之类的子目录

Alert log XML的文件位置

SQL> select value from v$diag_info where;

VALUE

--------------------------------------------------------------------------------

/u01/sys_software/oracle/diag/rdbms/hbcadb/hbcadb1/alert

SQL>

Alert log文本文件的位置

SQL> select value from v$diag_info where;

VALUE

--------------------------------------------------------------------------------

/u01/sys_software/oracle/diag/rdbms/hbcadb/hbcadb1/trace

SQL>

SQL>

---The End

linux

Related labels:
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