Oracle writes the alert log in the directory pointed to by the
background_dump_dest
initialization parameter.
On UNIX systems and Windows systems running Oracle 8.1 or later, that directory is under the admin directory tree.
The following is a typical path to the alert log on a UNIX system:
$ORACLE_BASE/admin/sid_name/bdump
Replace
sid_name
with the name of the Oracle instance.
To find out with certainty which directory to look in, connect using SQL*Plus and issue a
SHOW PARAMETER background_dump_dest
command. Here's an example:
SQL> show parameter background_dump_dest
NAME TYPE VALUE
-------------------- ------- ------------------------------
background_dump_dest string E:\Oracle\admin\jonathan\bdump
The alert log filename always includes the
SID name, and takes the following form:
sid_nameALRT.LOG
The alert log for the COIN database, for example, will be in the file named COINALRT.LOG.
In the next lesson, you will identify the different types of content in the alert log.