This view lists information about all temp files registered in the recovery catalog. It corresponds to the V$TEMPFILE view. A temp file is shown as dropped if its tablespace is dropped.
| Column | Data Type | Description | 
|---|---|---|
| DB_KEY | NUMBER | The primary key for the target database. Use this column to join with almost any other catalog view. | 
| DBINC_KEY | NUMBER | The primary key for the incarnation of the target database. Use this column to join with RC_DATABASE_INCARNATION. | 
| DB_NAME | VARCHAR2(8) | The DB_NAMEof the database incarnation to which this record belongs. | 
| TS# | NUMBER | The tablespace ID in the target database. The TS#may exist multiple times in the same incarnation if the tablespace is dropped and re-created. | 
| TABLESPACE_NAME | VARCHAR2(30) | The tablespace name. The name may exist multiple times in the same incarnation if the tablespace is dropped and re-created. | 
| FILE# | NUMBER | The absolute file number of the temp file. The same temp file number may exist in the same incarnation of the temp file is dropped and re-created. | 
| CREATION_CHANGE# | NUMBER | The SCN when the temp file is created. | 
| CREATION_TIME | DATE | The time when the temp file is created. | 
| DROP_CHANGE# | NUMBER | The SCN recorded when the temp file was dropped. If a new temp file with the same FILE#is discovered, then theDROP_CHANGE#is set toCREATION_CHANGE#for the temp file; otherwise, the value is set toRC_CHECKPOINT.CKP_SCN. | 
| DROP_TIME | DATE | The time when the temp file was dropped. If a new temp file with the same FILE#is discovered, then theDROP_TIMEis set toCREATION_TIMEfor the temp file; otherwise the value isRC_CHECKPOINT.CKP_TIME. | 
| BYTES | NUMBER | The size of the temp file in bytes. | 
| BLOCKS | NUMBER | Size of the file in blocks. | 
| BLOCK_SIZE | NUMBER | The block size of the temp file in bytes. | 
| NAME | VARCHAR2(1024) | The temp file name. | 
| RFILE# | NUMBER | The relative file number of this temp file within the tablespace. | 
| AUTOEXTEND | VARCHAR2(3) | ONif the temp file is autoextensible. OtherwiseOFF. | 
| MAXSIZE | NUMBER | Maximum file size in blocks to which the file can be extended. Valid only when AUTOEXTENDisON. Always0whenAUTOEXTENDisOFF. | 
| NEXTSIZE | NUMBER | Amount of incremental size for file extensible in blocks. Valid only when AUTOEXTENDisON. Always0whenAUTOEXTENDisOFF. | 
| BIGFILE | VARCHAR2(3) | YESif the tablespace is a bigfile tablespace; otherwise,NO. | 
| SITE_KEY | NUMBER | Primary key of the Data Guard database associated with this file. Each database in a Data Guard environment has a unique SITE_KEYvalue. You can useSITE_KEYin a join with theRC_SITEview to obtain theDB_UNIQUE_NAMEof the database. | 
| TABLESPACE_CREATION_CHANGE# | NUMBER | SCN at which this tablespace was created. | 
| TABLESPACE_CREATION_TIME | DATE | Timestamp at which this tablespace was created. | 
| TABLESPACE_DROP_CHANGE# | NUMBER | SCN at which this tablespace was dropped. | 
| TABLESPACE_DROP_TIME | DATE | Timestamp at which the tablespace was dropped. | 
| DB_UNIQUE_NAME | VARCHAR2(512) | The DB_UNIQUE_NAMEof the database incarnation to which this record belongs. All databases in a Data Guard environment share the same DBID but differentDB_UNIQUE_NAMEvalues. The value in this column is null when the database name is not known for a specific file. For example, rows for databases managed by versions of RMAN before Oracle Database 11g are null. |