ORA-09817: Write to audit file failed, ORA-01013: user requested cancel of current operation

How to fix Oracle

ERROR at line 1:
ORA-09817: Write to audit file failed.
SVR4 Error: 49: Disc quota exceeded
Additional information: 9
ORA-01013: user requested cancel of current operation

Solution

You should check your disk space.

Example

cd /u01/app/oracle/admin/orcl/adump/

rm *.aud or solaris -> find /u01/app/oracle/admin/orcl/adump/ -name *.aud -mtime +0 -exec rm -rf {} \;

Comments