Have a query to set records as bad by comparing with another table. To save time, I exclude records that have already been marked as 'bad'.
I wrote a query, but accidentally checked for != 'b' instead of != 'B'... the query executed in 0.203 seconds. When I realized my mistake, I changed it to != 'B', but now the query takes more than 200 seconds to execute!!!
When I checked the plans, the optimizer for 'b' chooses a concatenation of two hash joins. The plan for 'B' chooses nested loops.
If it matters, there aren't any records marked as 'B' for my test. There are ~18,000 records in gsu.stg_userdata, and ~ 73,000 records in gsu.userdata_compare. Both queries come up with the same (and correct) number of results.
The query:
select gstgu.global_id
from gsu.stg_userdata gstgu
left join gsu.userdata_compare guc
on (gstgu.global_id = guc.global_id) or (gstgu.user_id = guc.user_id)
where gstgu.row_check != 'b'
and ((-- Global IDs match, but two different Network IDs are explicitly set
(gstgu.global_id = guc.global_id) and (guc.user_id is not null and
gstgu.user_id is not null and
guc.user_id != gstgu.user_id))
-- Network IDs match, but two different Global IDs are explicitly set
or (guc.user_id = gstgu.user_id and (guc.global_id is not null and
gstgu.global_id is not null and
guc.global_id != gstgu.global_id))
or length(gstgu.global_id) != 8)
and guc.global_id != '00000000';
--
The plan for this sql:
Cost Card Bytes
SELECT STATEMENT, GOAL = ALL_ROWS 1014 1410 49350
CONCATENATION
HASH JOIN 507 559 19565
TABLE ACCESS FULL GSU STG_USERDATA 205 11144 189448
INDEX FAST FULL SCAN GSU USERCOMPARE_IDX 302 16979 305622
HASH JOIN 507 851 29785
INDEX FAST FULL SCAN GSU USERCOMPARE_IDX 302 16979 305622
TABLE ACCESS FULL GSU STG_USERDATA 205 17949 305133
If I take the exact same query, and say
where gstgu.row_check != 'B'
it takes more than 200 seconds to execute (nearly 1,000x as long) and the plan looks like:
Cost Card Bytes
SELECT STATEMENT, GOAL = ALL_ROWS 507 1 35
NESTED LOOPS 507 1 35
TABLE ACCESS FULL GSU STG_USERDATA 205 1 17
INDEX FAST FULL SCAN GSU USERCOMPARE_IDX 302 1 18
I'm going crazy, what gives??
.
= 'b'? Do you have any kind of statistics on that column? – Mat Dec 18 '11 at 8:09Borbcould have strange effects like what you are seeing. – Mat Dec 18 '11 at 8:31