Oracle 视图 DBA_TUNE_MVIEW 官方解释,作用,如何使用详细说明
本站中文解释
视图
Oracle 中 DBA_TUNE_MVIEW视图用来查看待调优状态的基于查询的物化视图(materialized view)。 该视图存在于数据库中,不需要任何权限就可以使用,作用是查询基于查询的物化视图,有可能会存在调优的可能性的物化视图。
DBA_TUNE_MVIEW视图中的字段如下:
– OWNER:物化视图的拥有者
– MVIEW_NAME:物化视图的名称
– LAST_REFRESH_TYPE:上次刷新该物理视图的类型
– REFRESH_CHANGES:每次刷新是否改变
– STATUS:物化视图的状态
– PCT_OPTIMIZABLE:可优化隐式聚集查询的百分比
使用DBA_TUNE_MVIEW视图可以查看具有可优化可能性的物理视图,这些物理视图可能是由每次刷新改变的,也可能是可优化隐式聚合查询的物化视图。
通过使用该视图,DBA可以有针对性地优化物化视图和关联查询,获得更优的性能。
官方英文解释
DBA_TUNE_MVIEW
displays the result of executing the DBMS_ADVISOR.TUNE_MVIEW
procedure.
Related View
USER_TUNE_MVIEW
displays the result of executing the DBMS_ADVISOR.TUNE_MVIEW
procedure. This view does not display the OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the task |
|
|
|
Name of the task |
|
|
|
|
Identifier of the action |
|
|
Type of the script:
|
|
|
|
Action statement |
See Also:
-
“USER_TUNE_MVIEW”
-
Oracle Database PL/SQL
Packages and Types Reference for more information about theDBMS_ADVISOR.TUNE_MVIEW
procedure