InterviewSolution
| 1. |
What Is The Main Purpose Of Checkpoint In Oracle Database? How Do You Automatically Force The Oracle To Perform A Checkpoint? |
|
Answer» A checkpoint is a database EVENT, which synchronize the database blocks in MEMORY with the datafiles on DISK. It has two main purposes: To establish a data consistency and enable faster database Recovery. The following are the parameter that will be used by DBA to adjust time or interval of how FREQUENTLY its checkpoint should occur in database. LOG_CHECKPOINT_TIMEOUT = 3600; # Every one hour A checkpoint is a database event, which synchronize the database blocks in memory with the datafiles on disk. It has two main purposes: To establish a data consistency and enable faster database Recovery. The following are the parameter that will be used by DBA to adjust time or interval of how frequently its checkpoint should occur in database. LOG_CHECKPOINT_TIMEOUT = 3600; # Every one hour |
|