Site icon IT Tutorial

ORA-19502: write error on file

I got ” ORA-19502: write error on file ” error in Oracle database.

 

ORA-19502: write error on file

 

Details of error are as follows.

ORA-19502: Write error on file "string", blockno string (blocksize=string)

Cause: Write error on output file

Action: Check the file




 

 

write error on file

This ORA-19502 errors are related with the Write error on output file.

To solve this error, you need to Check and fix the file.

Sometimes The filesystem has insufficient disk space available, so you need to free up disk space as follows.

Connect RMAN and execute the following commands.

 

run

{
crosscheck archivelog all;
crosscheck copy;
crosscheck backup;
delete noprompt obsolete;
delete noprompt expired copy;
delete noprompt expired archivelog all; 
delete noprompt expired backup;
}

 

 

 

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