分析索引
上一篇 /
下一篇 2008-06-05 13:37:44
/ 个人分类:索引
--分析索引
analyze table th compute statistics for table for all indexes for all indexed columns;
analyze table th compute statistics for table for all indexes ;
analyze table th compute statistics for table for indexed columns;
SQL> analyze table th compute statistics;
--
alter system flush shared_pool;
--删除统计信息
select 'analyze table ' || table_name || ' delete statistics;' from user_tables;
analyze table table_name delete statistics;
导入论坛
引用链接
收藏
分享给好友
推荐到圈子
管理
举报
TAG: