Archives for RMAN
Oracle Database Backup Strategies with RMAN
In the world of enterprise database management, Oracle is a premier player. Known for its vast capabilities, Oracle databases are used by businesses and organizations around the world. As such,…
RMAN : Perform Block Recovery
We can perform BLOCK RECOVERY with or without RMAN BACKUP, Here is the demonstration of block media recovery with HOT BACKUP and RMAN BACKUP as well. 1) Create tablespace, user…
Delete expired archivelogs using RMAN
Below commands will helpful for deleting expired archivelog files through RMAN : RMAN>list expired archivelog all; RMAN>crosscheck archivelog all; RMAN>delete noprompt expired archivelog all; Now check the output with below…
Delete expired archivelogs using RMAN
Below commands will helpful for deleting expired archivelog files through RMAN : RMAN>list expired archivelog all; RMAN>crosscheck archivelog all; RMAN>delete noprompt expired archivelog all; Now check the output with below…
Delete expired archivelogs using RMAN
Below commands will helpful for deleting expired archivelog files through RMAN : RMAN>list expired archivelog all; RMAN>crosscheck archivelog all; RMAN>delete noprompt expired archivelog all; Now check the output with below…
Clone/Refresh Database using RMAN
For our understanding Source Database: PRIM (It would be TARGET in case of RMAN Terminology) Auxiliary/Clone Database: TEST 1) Take FULL backup on source database using RMAN: Verify Source database…