Oracle 视图 DBA_HIST_BASELINE_METADATA 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_HIST_BASELINE_METADATA是用于收集基线更改环境诊断信息的系统视图。它由基线跟踪—自Oracle Database 11g引入的新特性,可以基于数据库中已有信息组成更新基线的表生成的,并在不断的更新中反映在这个视图中。 具体来说,它能够提供数据库中哪些文件及其存储在UTFFormat中的更改环境的诊断信息,它的大小,以及其它一些属性的数据。
使用DBA_HIST_BASELINE_METADATA视图的方法是在SQL命令窗口中运行以下SELECT语句:
SELECT * FROM dba_hist_baseline_metadata;
这条语句,将检索出所有关于数据库中基线更改环境诊断信息的数据,比如文件名,其存储在UTFFormat中,文件大小等等。可以根据需要,添加更多的过滤条件,改变查询的结果。
官方英文解释
DBA_HIST_BASELINE_METADATA
displays metadata information for the baseline.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Database ID |
|
|
| Internal ID for the baseline |
|
| User-specified name for the baseline | |
|
| The baseline type, as follows:
| |
|
| Start snapshot ID for the baseline | |
|
| End snapshot ID for the baseline | |
|
| If If NULL, then the window size is the value of the AWR retention setting. | |
|
| Time the baseline was created | |
|
| How long to keep the baseline, in number of days. If the value is NULL, the baseline will be kept forever. | |
|
| Name of the template that created this baseline, if any | |
|
| Last time that statistics were computed on the baseline | |
|
| The ID of the container to which the data pertains. Possible values include:
|
编辑:广州明生医药有限公司
标签:基线,视图,数据库中,信息,环境