What is the DB_RECOVERY_FILE_DEST_SIZE initialization parameter?

Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.

What is the DB_RECOVERY_FILE_DEST_SIZE initialization parameter?

Rating:

The DB_RECOVERY_FILE_DEST_SIZE initialization parameter specifies the size (bytes) of the Flash Recovery Area. It is always defined prior to the DB_RECOVERY_FILE_DEST initialization parameter.

The properties of this parameter are as follows:

  • Parameter type: Big integer
  • Syntax: DB_RECOVERY_FILE_DEST_SIZE = integer [K| M| G]
  • Default value: No default value is specified for this initialization parameter.
Examples of how to use this parameter with the ALTER SYSTEM command and the scope are as follows:

  1. SQL > ALTER SYSTEM
    set DB_RECOVERY_FILE_DEST_SIZE = 10g scope = memory;


  2. Here, MEMORY as a scope signifies that the changes occur in memory and take effect immediately and stay until the database is shut down.

    Note: If the database is started up using PFILE, then MEMORY is the only scope one can specify.

  3. SQL > ALTER SYSTEM
    set DB_RECOVERY_FILE_DEST_SIZE = 10g scope = spfile;


  4. Here, SPFILE as a scope signifies that the changes occur in SPFILE and take effect when the database is shut down and started up again.

    Note: This scope must be specified to change the value of a static parameter such as AUDIT_FILE_DEST, AUDIT_TRAIL, etc.

  5. SQL > ALTER SYSTEM
    set DB_RECOVERY_FILE_DEST_SIZE = 10g scope = both;


  6. Here, BOTH as a scope signifies that the changes occur both in memory and in the server parameter file (SPFILE) and take effect immediately and stay even after the database is shut down and started up again.

    Note: If the database is started up using SPFILE, the default scope will be BOTH.

    If the database is started up using PFILE, then the default scope will be MEMORY.


Rating:



Other articles

Click here to Article home

 
uCertify.com | Our Company | Articles | Privacy | Security | Contact Us | News and Press Release | uCertify India
MCSE: MCSA, MCTS, MCITP    JAVA Certification: SCJP, SCWCD Cisco Certification: CCNA, CCENT, A+, Network+, Security+
Oracle Certification: OCP 9i, OCP 10g, OCA 9i, OCA 10g CIW foundation    EC-212-32    CISSP    Photoshop ACE    Adobe Flash ACE
© 2008 uCertify.com. All rights reserved. All trademarks are the property of their respective owners.