Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> high parse/execute ratio
I have a select statement called by java as follows:
SELECT
b.login,
a.user_id,
(sum(a.score)+100) as highscore
FROM
score_table a,
member_table b
WHERE
b.member_id(+)=a.user_id
group by a.user_id,b.login order by highscore desc
It was executed for 563895 times, parsed for 563895, buffer gets 438919180, disk reads 105716809, first loaded on 10/19. How bad is this? What can I do about it?
TIA
tony