Oracle 视图 USER_SQLTUNE_PLANS 官方解释,作用,如何使用详细说明
本站中文解释
oracle视图
USER_SQLTUNE_PLANS是一个可以查看基于SQL的优化建议的Oracle视图。此视图是基于AWR(Automatic Workload Repository)报告中的SQL优化推荐来构建的。可以通过此视图查询各个SQL语句的优化建议,以及优化建议对性能影响的大小。使用此视图可以帮助开发人员定位SQL性能优化的位置,进而帮助提升数据库的性能。
要使用USER_SQLTUNE_PLANS视图,可以使用如下SQL语句:
SELECT * FROM USER_SQLTUNE_PLANS;
官方英文解释
USER_SQLTUNE_PLANS
displays information about the execution plans generated for the SQL statements owned by the current user during a SQL tuning session. Its columns are the same as those in DBA_SQLTUNE_PLANS
.
See Also:
“DBA_SQLTUNE_PLANS”