RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Rachel Carmichael
I never said both wouldn't be listed separately... in fact I said they WOULD. I said cursor_sharing would NOT change case, but would only affect the statement if you used a literal in it. --- "Mercadante, Thomas F" <[EMAIL PROTECTED]> wrote: > Rachel, > > This is what I thought, but list member

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Mercadante, Thomas F
Rachel, This is what I thought, but list members say differently. I just tried a simple test: Ran the following two queries: select count(*) from tomsqltest; SELECT COUNT(*) FROM TOMSQLTEST; and then: select hash_value,executions,sql_text from v$sql where upper(sql_text) like '%TOMSQLTEST%'

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Jamadagni, Rajendra
ipients of list ORACLE-L Subject: Re: Does the case of an Oracle query statement affect query perfo All that he is referring to is the possibility that "mixing-n-matching" will cause the same SQL statement to be hashed differently, thus stored individually in the Shared SQL Area cache, th

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Rachel Carmichael
> I don't have papers to substantiate this, but in our 9012 database > before we > started using cursor_sharing we used to run out of our 600M SGA, but > since > we started using CS, it went down. That should have nothing to do with the case of a statement and everything to do with using literal

Re: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Tim Gorman
essage - From: Mercadante, Thomas F To: Multiple recipients of list ORACLE-L Sent: Monday, September 30, 2002 7:48 AM Subject: RE: Does the case of an Oracle query statement affect query perfo Raj,   Do you have any test cases or white papers to support your st

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Joe Raube
I believe Raj is referring to the fact that Oracle will reuse SQL from the SQL Cache if the statement has been parsed already, but they must match verbatim. for example: a)SELECT column1, column2 FROM table WHERE column0 = 5; b)SELECT COLUMN1, COLUMN2 FROM TABLE WHERE COLUMN0 =5; will b

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Jamadagni, Rajendra
Title: RE: Does the case of an Oracle query statement affect query perfo Tom, Well it simply comes to when Oracle will parse the query and try to find a "matching" sql to hash to in SGA, if it finds one, it will hash to the same one, else it will have to create a new hash entry.

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Mercadante, Thomas F
--Original Message-From: Jamadagni, Rajendra [mailto:[EMAIL PROTECTED]]Sent: Monday, September 30, 2002 8:33 AMTo: Multiple recipients of list ORACLE-LSubject: RE: Does the case of an Oracle query statement affect query perfo As long as you stick to either (a) or (b) you will be o

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Deshpande, Kirti
Oracle sees (a) and (b) as two different queries and parses them both. For them to be identical the text must match, including the white spaces. I suggest a small test under *identical conditions* to see if execution time varies ;)   - Kirti   -Original Message-From: Shantanu Dat

RE: Does the case of an Oracle query statement affect query perfo

2002-09-30 Thread Jamadagni, Rajendra
As long as you stick to either (a) or (b) you will be okay ... if you mix-n-match that will make Oracle do more work.   Raj __ Rajendra Jamadagni      MIS, ESPN Inc. Rajendra dot Jamadagni at ESPN dot com Any opinion expressed here