11 2017 档案

摘要:查看执行过缓存的解析Sqlselect name , executions from v$db_object_cache where name like 'select *from sys_yh%' 优化器参数选择 尽量避免使用Choose 模式 采用基于Rule Select 的优化模式 Rule 阅读全文
posted @ 2017-11-21 13:31 SoftSteven 阅读(166) 评论(0) 推荐(0)
摘要:一、查询执行最慢的sql select * from (select sa.SQL_TEXT, sa.SQL_FULLTEXT, sa.EXECUTIONS "执行次数", round(sa.ELAPSED_TIME / 1000000, 2) "总执行时间", round(sa.ELAPSED_T 阅读全文
posted @ 2017-11-18 10:41 SoftSteven 阅读(393) 评论(0) 推荐(0)