最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

【翻譯自mos文章】SYS_OP_C2C導(dǎo)致的全表掃描(fts)/全索引掃描

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-09 15:00:58
文檔

【翻譯自mos文章】SYS_OP_C2C導(dǎo)致的全表掃描(fts)/全索引掃描

【翻譯自mos文章】SYS_OP_C2C導(dǎo)致的全表掃描(fts)/全索引掃描:SYS_OP_C2C 導(dǎo)致的全表掃描(fts)/全索引掃描 參考原文: SYS_OP_C2C Causing Full Table/Index Scans (Doc ID 732666.1) 適用于: Oracle Database - Enterprise Edition - Version 10.1.0.2 to 12.1.0.1
推薦度:
導(dǎo)讀【翻譯自mos文章】SYS_OP_C2C導(dǎo)致的全表掃描(fts)/全索引掃描:SYS_OP_C2C 導(dǎo)致的全表掃描(fts)/全索引掃描 參考原文: SYS_OP_C2C Causing Full Table/Index Scans (Doc ID 732666.1) 適用于: Oracle Database - Enterprise Edition - Version 10.1.0.2 to 12.1.0.1

SYS_OP_C2C 導(dǎo)致的全表掃描(fts)/全索引掃描 參考原文: SYS_OP_C2C Causing Full Table/Index Scans (Doc ID 732666.1) 適用于: Oracle Database - Enterprise Edition - Version 10.1.0.2 to 12.1.0.1 [Release 10.1 to 12.1] Information in this docu

SYS_OP_C2C 導(dǎo)致的全表掃描(fts)/全索引掃描

參考原文:
SYS_OP_C2C Causing Full Table/Index Scans (Doc ID 732666.1)

適用于:
Oracle Database - Enterprise Edition - Version 10.1.0.2 to 12.1.0.1 [Release 10.1 to 12.1]
Information in this document applies to any platform.
This problem can occur on any platform.

癥狀:
1)正在執(zhí)行一個(gè)帶有綁定變量的查詢
2)綁定變量經(jīng)由application(.net, j2ee等)使用 "string" 類型的綁定變量來(lái)綁定。
3)該查詢錯(cuò)誤的執(zhí)行了全表掃描/索引掃描,而沒(méi)有使用索引唯一掃描或者索引范圍掃描
4)使用advanced 選項(xiàng)查看explain plan, sqltxlain or 10053 trace,你會(huì)注意到在"Predicate Information"部分 會(huì)顯示一個(gè) "filter(SYS_OP_C2C)".

e.g select * from table(dbms_xplan.display_cursor(&sql_id,null,'ADVANCED'));

Predicate Information (identified by operation id):
---------------------------------------------------
1 - filter(SYS_OP_C2C("COL1")=:B1) <=== filter operation occurring

原因:

"string" 綁定變量 與 table 中的該 column 使用了不同的數(shù)據(jù)類型
這意味著 當(dāng)執(zhí)行這個(gè)查詢的時(shí)候,需要把數(shù)據(jù)進(jìn)行一個(gè)隱式類型轉(zhuǎn)換。 SYS_OP_C2C 是一個(gè)隱式函數(shù)(implicit function),該函數(shù)用于字段(列)在nchar和char之間轉(zhuǎn)換

解決方案:

1. 建立一個(gè)基于函數(shù)的索引。
e.g create index on (SYS_OP_C2C());

或者:

2.讓綁定變量定義的數(shù)據(jù)類型與該列的數(shù)據(jù)類型一致。
A java example where this can occurs is when defaultNChar=TRUE. This will cause strings to bind as NVARCHAR2 causing the predicate that are subset datatypes to be converted to NVARCHAR2.
e.g. -Doracle.jdbc.defaultNChar=true
true

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

【翻譯自mos文章】SYS_OP_C2C導(dǎo)致的全表掃描(fts)/全索引掃描

【翻譯自mos文章】SYS_OP_C2C導(dǎo)致的全表掃描(fts)/全索引掃描:SYS_OP_C2C 導(dǎo)致的全表掃描(fts)/全索引掃描 參考原文: SYS_OP_C2C Causing Full Table/Index Scans (Doc ID 732666.1) 適用于: Oracle Database - Enterprise Edition - Version 10.1.0.2 to 12.1.0.1
推薦度:
標(biāo)簽: 文章 掃描 導(dǎo)致
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top