What is the role of Archiver [ARCn]? - oracle

What is the role of Archiver [ARCn]?

ARCn is an oracle background process responsible for copying the entirely filled online redo log file to the archive log. Once these files have been copied, they can be overwritten. The n in ARCn represents the sequence number of the archiver process. A single oracle instance can have 10 (ARC0 to ARC0) archiver processes associated with it. ARCn process is however, only activated when the database is running in ARCHIVELOG mode and the LOG_ARCHIVE_START initialization parameter is set to true.
Difference between bitmap and btree index in oracle
Difference between bitmap and btree index - Btree It is made of branch nodes and leaf nodes. Branch nodes holds prefix key value along with the link to the leaf node. The leaf node in turn...
Convert oracle table data into excel sheet - oracle
Convert oracle table data into excel sheet - There are 2 ways to do so: 1. Simply use the migration wizard shipped with Oracle...
When should we go for hash partitioning? - oracle
Hash partitioning - Scenarios for choosing hash partitioning: Not enough knowledge about how much data maps into a give range...
Post your comment