Monitoring Space in the Flash Recovery Area

Previous
Previous
Next
Next

You must run a SQL query to determine the current available space in the flash recovery area.

To view current available space in the flash recovery area:

  1. Access the Database Home page, and log in as user SYSTEM, providing the password that you set upon installation (Windows) or configuration (Linux).

    See "Accessing the Database Home Page" for instructions.

  2. Click the SQL icon, and then click the SQL Commands icon.

    The SQL Commands page appears.

  3. Enter the following query into the query text field:

    SELECT 
        NAME, 
        TO_CHAR(SPACE_LIMIT, '999,999,999,999') AS SPACE_LIMIT,
        TO_CHAR(SPACE_LIMIT - SPACE_USED + SPACE_RECLAIMABLE, '999,999,999,999')
           AS SPACE_AVAILABLE,
        ROUND((SPACE_USED - SPACE_RECLAIMABLE)/SPACE_LIMIT * 100, 1)
           AS PERCENT_FULL
        FROM V$RECOVERY_FILE_DEST;
    
    
  4. Click Run to run the query.

Query results should look something like this:

-------------------------------------------------------------------------------------------------
NAME                                                SPACE_LIMIT    SPACE_AVAILABLE   PERCENT_FULL
/usr/lib/oracle/xe/app/oracle/flash_recovery_area  10,737,418,240   10,737,418,240      5.1
------------------------------------------------------------------------------------------------- 

Interpret the results as follows:


See Also: