Error:
Oracle error 20100: java.sql.SQLException: ORA-20100: Error: FND_FILE failure. Unable to create file, o0971960.tmp in the directory, /usr/tmp.
You will find more information in the request log.
ORA-06512: at "APPS.FND_FILE", line 417
ORA-06512: at "APPS.FND_FILE", line 526
ORA-06512: at "APPS.FND_CONCURRENT", line 1335
ORA-06512: at line 1
has been detected in FND_CONCURRENT.SET_INTERIM_STATUS.+---------------------------------------------------------------------------+
Start of log messages from FND_FILE
Cause:
The common root cause of this type of issue is multiple instances targeting the same physical directory that can make it full or .tmp file with same request number might exist.
Solution:
Each environment needs to target a separate utl_file_dir to prevent the recurrence of this issue.
This value can be observed with the following query.
select value from v$parameter where name = 'utl_file_dir';
The issue is resolved by creating some space or changing utl_file_dir to some new location where user has access to read and write.
1. Clear /usr/tmp folder, or the folder that is full
OR
2. Change utl_file_dir and $APPLTMP location to some new location.
3. Check the APPLPTMP variable value is the same as the first directory path defined in UTL_FILE_DIR
e.g. echo $APPLPTMP
2. Retest the issue
No comments:
Post a Comment