Options to Recover a Oracle Database without backup/Archivelog files or when accidentally deleted the .dbf files in Linux
Option#1: Recover the deleted .dbf file from Linux process in-memory location I you have accidentally deleted the Oracle database .dbf files when database is Open, then you can recover the deleted dbf file from Linux in-memory held by the Oracle DB process. This is possible because when you delete a file in Linux only inode of it is deleted but processes that are already connected to the file will remain using it via already opened file handle. This file will be available until the running process is active. Find the DB writer process: [root@ProdDB01 /]# ps -edf | grep […]
Read more