Site icon IT Tutorial

ORA-27092: size of file exceeds file size limit of the process

I got ” ORA-27092: size of file exceeds file size limit of the process ”  error in Oracle database.

 

ORA-27092: size of file exceeds file size limit of the process

 

Details of error are as follows.

ORA-27092: size of file exceeds file size limit of the process

Cause: an attempt was made to open a file that exceeds the process's file size limit (ulimit),
 additional information shows the current limit (logical blocks) and the size of the file 
(logical blocks)

Action: increase the processes file size limit (ulimit) and retry

 

 

size of file exceeds file size limit of the process

This ORA-27092 error is related to the attempt was made to open a file that exceeds the process’s file size limit (ulimit), additional information shows the current limit (logical blocks) and the size of the file (logical blocks)

increase the processes file size limit (ulimit) and retry as follows.

 

Increase O/S limit in the /etc/security/limits as follows, and add below inside your .profile or .bash_profile.

ulimit -n 101062
$ ulimit -a

time(seconds) unlimited 
file(blocks) unlimited 
data(kbytes) unlimited 
stack(kbytes) unlimited 
memory(kbytes) unlimited 
coredump(blocks) unlimited 
nofiles(descriptors) unlimited 
threads(per process) unlimited 
processes(per user) unlimited
 

 

Try to Shutdown database and startup database again.

 

SQL> shutdown immediate
SQL> startup
$ lsnrctl stop
$ lsnrctl start

 

 

 

 

Do you want to learn Oracle Database for Beginners, then read the following articles.

Oracle Tutorial | Oracle Database Tutorials for Beginners ( Junior Oracle DBA )

 

Exit mobile version