This view lists information about all database incarnations registered in the recovery catalog. Oracle creates a new incarnation whenever you open a database with the RESETLOGS option. Records about the current and immediately previous incarnation are also contained in the V$DATABASE view.
| Column | Datatype | Description | 
|---|---|---|
| DB_KEY | NUMBER | The primary key for the database. Use this column to join with almost any other catalog view. | 
| DBID | NUMBER | Unique identifier for the database. | 
| DBINC_KEY | NUMBER | The primary key for the incarnation. | 
| NAME | VARCHAR2(8) | The DB_NAMEfor the database at the time of theRESETLOGS. The value isUNKNOWNif you have done at least oneRESETLOGSbefore registering the target database with RMAN, because RMAN does not know theDB_NAMEprior to theRESETLOGS. | 
| RESETLOGS_CHANGE# | NUMBER | The SCN of the RESETLOGSoperation that created this incarnation. | 
| RESETLOGS_TIME | DATE | The time stamp of the RESETLOGSoperation that created this incarnation. | 
| CURRENT_INCARNATION | VARCHAR2(3) | YESif it is the current incarnation;NOif it is not. | 
| PARENT_DBINC_KEY | NUMBER | The DBINC_KEYof the previous incarnation for this database. The value isNULLif it is the first incarnation recorded for the database. | 
| PRIOR_RESETLOGS_CHANGE# | NUMBER | The SCN of the RESETLOGSoperation that created the parent of this incarnation. | 
| PRIOR_RESETLOGS_TIME | DATE | The time stamp of the RESETLOGSoperation that created the parent of this incarnation. | 
| STATUS | VARCHAR2(8) | CURRENTif this incarnation is the current database incarnation.PARENTif this is a noncurrent incarnation that is a direct ancestor of the current incarnation.ORPHANif this is a noncurrent incarnation that is not a direct ancestor of the current incarnation. |