Oracle 视图 DBA_FLASHBACK_ARCHIVE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_FLASHBACK_ARCHIVE可用于查询数据库Flashback Archive的相关信息, 包含状态、空间等。可用来查询以下信息:
1)Flashback Archive状态:当前是否与Flashback Archive相关联,状态是enable还是disable
2)Flashback Archive空间:Flashback Archive中Flashback动态数据量存放的空间、大小等信息
3)Flashback Archive其它参数:剩余时间、Flashback恢复点指数、Flashback_Scn时间、表空间名等信息
使用方式:
1) 查询正在使用的FBA:
SELECT * FROM DBA_FLASHBACK_ARCHIVE WHERE STATUS=’ENABLED’;
2) 查询
官方英文解释
DBA_FLASHBACK_ARCHIVE
describes all flashback archives available in the database.
Related View
USER_FLASHBACK_ARCHIVE
describes the flashback archives available to the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the creator of the flashback archive |
|
|
|
|
Name of the flashback archive |
|
|
|
Number of the flashback archive |
|
|
|
Maximum duration (in days) for which data is retained in the flashback archive |
|
|
Time at which the flashback archive was created |
|
|
|
Time at which the data in the flashback archive was last purged by the system |
|
|
|
Indicates whether the flashback archive is a default flashback archive for the system ( |
See Also:
“USER_FLASHBACK_ARCHIVE”