查看oracle的统计信息

来源:互联网 发布:两列数据查找相同项 编辑:程序博客网 时间:2024/05/15 10:00
--查看表的stats
select * from user_tab_statistics where table_name = 'STUDENT'


--查看列的stats
select * from user_tab_col_statistics where table_name = 'STUDENT'


--查看索引的stats
select * from user_ind_statistics where table_name = 'STUDENT'
0 0
原创粉丝点击