国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > 綜合 > 正文

視圖上含有row_number分析函數(shù)沒法走索引

2024-07-21 02:41:57
字體:
供稿:網(wǎng)友

問題:有如下的sql性能差:

select rowid,PKG_LIFE_QUERY_FUNC.F_GET_DEPOSIT_ACCOUNT_VALUE(DEPOSIT_ID,ACCOUNT_CODE) as ACCOUNT_VALUE,PKG_LIFE_QUERY_FUNC.F_GET_DEPOSIT_ACCOUNT_VALUE(DEPOSIT_ID,ACCOUNT_CODE) as ACCOUNT_VALUE,a.* from V_CUST_DEPOSIT_LIST a where ( account_code='27902')


V_CUST_DEPOSIT_LIST 是一個視圖如下:


create or replace view v_cust_deposit_list as

select row_number() over(order by tcdl.account_code,

trunc(tcdl.deposit_date), to_number(decode(tcd.distri_type,

'1', 1, '2', 5, '3', decode(tpf.fee_type, 169, 2, 69, 6),

'10', 3, '71', 4, '8', 9, 8))) rn,tcdl.*

from t_cust_deposit_list tcdl,

t_capital_distribute tcd,

t_PRoduct_fee tpf

where tcdl.capital_id = tcd.capital_id(+)

and tcd.prem_id = tpf.list_id(+)

order by tcdl.account_code,

trunc(tcdl.deposit_date),

to_number(decode(tcd.distri_type,'1',1,'2',5,'3',

decode(tpf.fee_type, 169, 2, 69, 6),'10',3,'71',4,'8',9,8));

 

在t_cust_deposit_list有account_code;


原因:由于在視圖上含有row_number分析函數(shù),所以沒法走索引:把語句改為:


select rowid,

PKG_LIFE_QUERY_FUNC.F_GET_DEPOSIT_ACCOUNT_VALUE(DEPOSIT_ID,ACCOUNT_CODE) as ACCOUNT_VALUE,

PKG_LIFE_QUERY_FUNC.F_GET_DEPOSIT_ACCOUNT_VALUE(DEPOSIT_ID,ACCOUNT_CODE) as ACCOUNT_VALUE,

a.*

from (

select row_number() over (order by tcdl.account_code,trunc(tcdl.deposit_date),to_number(decode(tcd.distri_type,'1',1,'3',decode(tpf.fee_type,169,2,69,5),'10',3,'71',4,'2',9,8))) rn,tcdl.*

from

(select tcd2.* from t_cust_deposit_list tcd2

where tcd2.account_code='27902') tcdl,t_capital_distribute tcd,t_product_fee tpf

where tcdl.capital_id = tcd.capital_id(+) and tcd.prem_id = tpf.list_id(+)

order by tcdl.account_code,trunc(tcdl.deposit_date),to_number(decode(tcd.distri_type,'1',1,'3',decode(tpf.fee_type,169,2,69,5),'10',3,'71',4,'2',9,8))

) a


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 莱芜市| 英山县| 刚察县| 微博| 同江市| 陕西省| 荆门市| 昌吉市| 怀安县| 舒城县| 土默特左旗| 遵义县| 临西县| 康乐县| 江油市| 潢川县| 区。| 根河市| 克什克腾旗| 舒城县| 肥西县| 新晃| 永善县| 江安县| 泸定县| 长岭县| 左贡县| 永修县| 随州市| 灵丘县| 莒南县| 延川县| 冕宁县| 太仓市| 义乌市| 西吉县| 虹口区| 于都县| 云梦县| 泽库县| 济阳县|