Wednesday, September 24, 2008

AUDIT_FILE_DEST


Property
Description
Parameter type
String
Syntax
AUDIT_FILE_DEST = 'directory'
Default value
The first default value is:
ORACLE_BASE/admin/ORACLE_SID/adump
The second default value, which is used if the first default value does not exist or is unusable, is:
ORACLE_HOME/rdbms/audit
Both of these default values are for Unix systems. Other platforms may have different defaults.
Modifiable
ALTER SYSTEM ... DEFERRED
Basic
No
AUDIT_FILE_DEST specifies the operating system directory into which the audit trail is written when the AUDIT_TRAIL initialization parameter is set to os, xml, or xml,extended. The audit records will be written in XML format if the AUDIT_TRAIL initialization parameter is set to XML. It is also the location to which mandatory auditing information is written and, if so specified by the AUDIT_SYS_OPERATIONS initialization parameter, audit records for user SYS.
Note:
1. If the audit directory is full or not writable you may get ORA-1031 and similar errors when trying to CONNECT INTERNAL or CONNECT / AS SYSDBA.

2. Query for the current value of the parameter
select name, value, isdefault, isses_modifiable, issys_modifiable,
isinstance_modifiable, isdeprecated, description
from v$parameter where upper(name) = 'AUDIT_FILE_DEST';
NAME
VALUE
IS
DEFAULT
ISSES_
MODIFIABLE
ISSYS_
MODIFIABLE
ISINSTANCE_
MODIFIABLE
IS
DEPRECATED
DESCRIPTION
audit_file_dest
/oracle/admin/mydb/adump
TRUE
FALSE
DEFERRED
TRUE
FALSE
Directory in which auditing files are to reside

Oracle initializatoin parameters


More Oracle DBA tips, please visit Oracle DBA Tips 

No comments:

Post a Comment