oracle版本为9,bill_call_ticket按天分区,sql如下:
select
account_month,
partitionx day_id,
USER_TYPE,
BUSI_TYPE,
ticket_type,
PHS_own_ZONE_CODE ,
phs_nbr,
OUT_PARTNER_ID ,
/*下面为统计的数值*/
count(*) sum_tickets,
sum(case when nvl(charge,0)=0 then 0 when busi_type not in ('10','20','30','60','12','13') then 0 else charge_counts end ) charge_counts,
sum(case when nvl(fee_other,0)=0 then 0 when busi_type not in ('10','20','30','60','12','13') then 0 else fee_other_counts end) fee_other_counts,
sum(nvl(charge,0)) charge,
sum(nvl(fee_other,0)) fee_other,
sum(fee_sum) fee_sum,
sum(decode(BUSI_TYPE,'10',duration,'20',duration,'30',duration,'60',duration,'12',duration,'13',duration,0)) duration,
roam_type,
decode(user_type,'0',out_trunk_id,'0') out_trunk_id
from bill_call_ticket partition(b20070327)
where
call_type='0'
and (
busi_type in ('10','50','54','55','AA','A1','A2','A3','51','52','53','58','56')
or (user_type='1' and ticket_type='13')
or (busi_type='30' and ticket_type in ('AA','AB'))
or ticket_type='12'
)
group by account_month,
partitionx,
USER_TYPE,
BUSI_TYPE,
ticket_type,
PHS_own_ZONE_CODE ,
phs_nbr,
OUT_PARTNER_ID,
roam_type,
out_trunk_id
我试着对CALL_TYPE, ACCOUNT_MONTH, USER_TYPE, BUSI_TYPE, TICKET_TYPE这几个字段建了分区索引,可是我查看执行计划时却发现压根没用上,请问我该对哪些字段建分区索引还是全局索引? |