DBA Hub

📋Steps in this guide1/3

Alert log file in Oracle

As you know alert log file location determined by the background dump destination it’s specified by backupground_dump_dest parameter

oracle configurationintermediate
by OracleDba
18 views
1

Overview

As you know alert log file location determined by the background dump destination it’s specified by backupground_dump_dest parameter You can find location of alert log with following command. SQL> show parameter background NAME TYPE VALUE ——————————— ———– —————————— background_core_dump string partial
2

Section 2

background_dump_dest string D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCLDATA\BDUMP Also you can use following command SQL> select name, value from v$parameter where name=’background_dump_dest’ NAME VALUE ——————– ———————————————————— background_dump_dest D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCLDATA\BDUMP
3

Section 3

For windows platform to find alert log file location run following command on host Dir /s alert*.log|more It’ll show you the location & size of alert log file.

Comments (0)

Please to add comments

No comments yet. Be the first to comment!