How to Check FRA Usage in Oracle Database? DBA scripts to Check FRA Usage in Oracle Database?
Ezana Answered question 20/04/2023
DBA scripts to query FRA Usage in Oracle Database:
SELECT ROUND((SPACE_USED - SPACE_RECLAIMABLE)/SPACE_LIMIT * 100, 1) AS PERCENT_FULL FROM V$RECOVERY_FILE_DEST;
Ezana Answered question 20/04/2023