一复哆、統(tǒng)計信息
1.查看合并后表的統(tǒng)計信息。
select * from __all_virtual_meta_table where table_id=111111;
2.查看合并后列的統(tǒng)計信息。
select
b.table_name,
a.tenant_id,
a.partition_id,
c.column_name,
a.num_distinct,
a.num_null,
a.gmt_modified
from
__all_virtual_column_statistic a
join gv$table b on a.table_id = b.table_id
join __all_virtual_column c on a.table_id = c.table_id
and a.column_id = c.column_id
where
b.table_name = 'CHAP41'
and b.tenant_id = 1001
and b.database_name = 'tpcc';
3.手工收集統(tǒng)計信息痹扇。
- 收集所有列的統(tǒng)計信息
call dbms_stats.gather_table_stats('tpcc','chap41', method_opt=>'for all columns size 128'); - 收集指定列的統(tǒng)計信息
call dbms_stats.gather_table_stats('tpcc','chap41', method_opt=>'for columns c3 size auto');
4.查看手工收集后的表的統(tǒng)計信息橡羞。
select NUM_ROWS,EMPTY_BLOCKS,AVG_SPACE,AVG_ROW_LEN from all_tab_statistics where table_name='CHAP41';
5.查看手工收集后的列的統(tǒng)計信息。
select LOW_VALUE,HIGH_VALUE,DENSITY,NUM_BUCKETS,LAST_ANALYZED from all_tab_col_statistics where table_name='CHAP41';
6.查看手工收集后的表的直方圖拜效。
select ENDPOINT_NUMBER,ENDPOINT_VALUE,ENDPOINT_ACTUAL_VALUE,scope from all_tab_histograms where table_name='CHAP41';
二喷众、只讀事務(wù)參數(shù)對執(zhí)行性能影響
- 修改租戶參數(shù)
alter system set ob_proxy_readonly_transaction_routing_policy=false tenant=all;