首页 > 代码库 > PLSQL_统计信息系列5_统计信息生成和还原(案例)
PLSQL_统计信息系列5_统计信息生成和还原(案例)
2015-02-01 Created By BaoXinjian
一、摘要
统计信息在重新生成后,发现并不能改善程序的性能,甚至更差的时候
Oracle提供了dbms_stat包,对统计信息进行还原
还原步骤如下
Step1. Regather the stats of the tables involved in the query. 重新产生统计信息
Step2. Check the excution plan of the SQL with explain plan. 统计信息更新后解析计划效果
Step3. If the plan changes back, ask to kill the current running job and re-run it. 如果效果可以,则杀掉该进程,重启程序
Step4. If regather doesn‘t work, try to restore the stats of the table whose stats are gathered recently. 如效果不行,则对计息计划进行还原
二、案例
Thanks and Regards
PLSQL_统计信息系列5_统计信息生成和还原(案例)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。