我正在研究Oracle 10gR2
我有一个表格的MERGE语句,TBL_CUSTOMER。 TBL_CUSTOMER包含USERNAME列,其中包含电子邮件地址。存储在此表中的数据不区分大小写,因为输入数据可以是大写,小写或任何案例组合。
在合并数据时,我必须确保在不考虑大小写的情况下比较数据。我在USERNAME列上创建了一个函数库索引作为UPPER(USERNAME)。
MERGE INTO tbl_customer t
USING (SELECT /*+ dynamic_sampling(a 2) */ NVL(
(x.username||decode((x.cnt+x.rn-1),0,null,(x.cnt+x.rn-1))),
t1.cust_username
) community_id
,DECODE (source_system_name,'SYS1', t1.cust_firstname,t1.cust_username) display_name
,t1.cust_username
,t1.cust_id cust_id
,t1.cust_account_no cust_account_no
,t1.cust_creation_date
,t1.source_system_name
,t1.seq_no
,nvl(t1.cust_email,'NULLEMAIL') cust_email
,t1.file_name
,t1.diakey
,t1.sourcetupleidcustmer
,DECODE (source_system_name,'SYS1','DefaultPassword',t1.cust_password) cust_password
FROM gtt_customer_data t1,
(SELECT a.username,
cust_id,
row_number() over(partition by lower(a.username) order by seq_no) rn,
(SELECT count(community_id)FROM TBL_customer where regexp_like (lower(community_id) ,'^'||lower(a.username)||'[0-9]*$'))cnt
FROM gtt_cust_count_name a
) x
WHERE t1.cust_status = 'A'
AND x.cust_id(+) = t1.cust_id
AND nvl(t1.op_code,'X') <> 'D'
AND t1.cust_id is not null
AND cust_email is not null
) a
ON (
(a.sourcetupleidcustmer = t.source_tuple_id AND a.source_system_name =t.created_by)
OR
( upper(a.cust_email) = upper(t.username) AND a.source_system_name ='SYS2' )
)
当我检查解释计划时,未使用USERNAME上基于函数的索引。我注意到如果我删除OR条件,则使用索引,但由于复杂的业务逻辑,我无法删除它。
如何强制使用该索引?
答案 0 :(得分:2)
Oracle允许您在upper(username)
的情况下创建基于函数的索引。您也可以在查询中尝试INDEX
提示,但我认为在您的情况下,基于函数的索引是一个更好的解决方案。
如果索引字段是函数的参数(假设WHERE
中的函数并且它不是覆盖索引),则通常不使用BTree索引。例如,WHERE trunc(date_field) = trunc(sysdate())
不会在date_field
上使用索引,但会在(trunc(date_field))
上使用索引。