Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Performance Problem - select from dual
This is a multi-part message in MIME format.
------=_NextPart_000_0251_01C0292F.8FE49D60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
RE: Performance Problem - select from dualJust a thought that occurred to m= e while I was perusing this thread - please enlighten me if my line of thou= ght is incorrect. (I am in the mood to use 'high-faluting' grammar this mor=ning!)
Would the to_date('1970-01-01.09:30:00', 'YYYY-MM-DD.HH24:MI:SS') functi= on be evaluated for every row in the 17 million (i.e. - 17 million times)? = If so, it would help to have it 'pre-executed', and just add the (tstamp/86=400000000) to it, and then do the to_char bit?
for example
DECLARE
Jan70 DATE :=3D TO_DATE( '1970-01-01.09:30:00', 'YYYY-MM-DD.HH24:MI:SS=
' );
BEGIN
RETURN( TO_CHAR( Jan70 + ( TStamp / 86400000000 ), 'dd-mm-yyyy' ));=20
END; =20
The way I understood the parse/execute procedure works in Oracle the PL/SQL= engine, the 'combined' statement/function would only be parsed once (as th= e TStamp is a bind variable'), but the TO_DATE function inside the Return s= tatement would be executed the 17 million times, after the TStamp is added = to the 'constant' Jan70 date value. If it is in a function/procedure which= is called the 17 million times, would the conversion/declaration be done 1= 7 million times, or would it be part of the initial parsing? If so, maybe =defining a 'global variable' in a package could be a way round that.
Any comments / corrections/ elucidations?
Regards
Oweson Flynn
This is so interesting. I have read before that SELECT ... FROM DUAL is = expensive in a procedure, and have seen it in traces. Can anyone explain w= hy? =20
Thanks=20
Lisa=20
Ft. Lauderdale, FL, USA=20
-----Original Message-----=20
From: Toepke, Kevin M [mailto:ktoepke_at_cms.cendant.com]=20
Sent: Wednesday, September 27, 2000 8:25 AM=20
To: Multiple recipients of list ORACLE-L=20
Subject: RE: Performance Problem.=20
The SELECT from DUAL is a problem. It is not needed. Recode as follows.=
BEGIN=20 RETURN(to_char(to_date('1970-01-01.09:30:00',=20 'YYYY-MM-DD.HH24:MI:SS') +=20 (tstamp/86400000000),'dd-mm-yyyy'));=20 END;=20
If you have the space, create an index on the 17Mill row table that conta=
ins=20
all of the columns you need. Make sure the columns in the index are in th=
e=20
same order as the columns in ORDER BY clause -- reduce I/O plus no sortin=
g=20
required.=20
Kevin=20
>=20
>=20
> Hi All,=20
> Our customer has a report running under NT/Oracle 7.3.4 that=20 > runs for a very=20 > long time, nearly 16 hours. After investigating the program I=20 > discovered two=20 > things:=20 > 1. A call to a procedure was taking nearly half the cpu, but=20 > all it is, is a=20 > select from dual to convert a timestamp column, that is passed to the= > procedure, to a date.=20 > eg select tstamp_to_date(colname), ..... from table where ....=20 > The function is:=20 > BEGIN=20 > select to_char(to_date('1970-01-01.09:30:00',=20 > 'YYYY-MM-DD.HH24:MI:SS') +=20 > (tstamp/86400000000),'dd-mm-yyyy')=20 > into ts_date from dual;=20 > return ts_date;=20 > END;=20
> Would there be a great improvement if we pinned the function=20 > into memory, or=20 > should we just replace it all together which I believe is possible.=20
> 2. The huge cursor, on a table of 17mill rows, that drives=20 > the report is=20 > using 7.5Gb of temporary tablespace because of the hash joins=20 > of full table=20 > scans & order by.=20
> Would it be better to scan the large table and select the=20 > records required=20 > (maybe 1.5mill) into another table that is Primary keyed on=20 > the required=20 > Order and then report from that table so eliminating the=20 > order by and the=20 > need for the temporary tablespace??=20
> Any help would be greatly appreciated.=20
> Thanks=20 > Ian=20 > --=20 > Please see the official ORACLE-L FAQ: http://www.orafaq.com=20 > --=20 > Author: Biddell, Ian=20 > INET: Ian.Biddell_at_compaq.com=20
> --------------------------------------------------------------------=20 > To REMOVE yourself from this mailing list, send an E-Mail message=20 > to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in=20 > the message BODY, include a line containing: UNSUB ORACLE-L=20 > (or the name of mailing list you want to be removed from). You may=20> also send the HELP command for other information (like subscribing).=20
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051=20 San Diego, California -- Public Internet access / Mailing Lists=20 --------------------------------------------------------------------=20To REMOVE yourself from this mailing list, send an E-Mail message=20 to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in=20 the message BODY, include a line containing: UNSUB ORACLE-L=20 (or the name of mailing list you want to be removed from). You may=20 also send the HELP command for other information (like subscribing).=20
This message may contain information which is confidential and subject to l= egal privilege. If you are not the intended recipient, you may not peruse, = use, disseminate, distribute or copy this message. If you have received thi= s message in error, please notify the sender immediately by email, facsimil=e or telephone and return and/or destroy the original message.
------=_NextPart_000_0251_01C0292F.8FE49D60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>RE: Performance Problem - select from dual</TITLE> <META content=3D"text/html; charset=3Diso-8859-1" http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2314.1000" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT size=3D2>Just a thought that occurred to me while I was perusing=this=20
<DIV> </DIV> <DIV><FONT size=3D2>Would the =20 <STRONG>to_date('1970-01-01.09:30:00', </STRONG><FONT size=3D2><STRONG=> =20
<DIV> </DIV> <DIV><FONT size=3D2>for example</FONT></DIV> <DIV> </DIV> <DIV><FONT size=3D2>DECLARE</FONT></DIV> <DIV><FONT size=3D2> Jan70 DATE :=3D TO_DATE( =20'1970-01-01.09:30:00', 'YYYY-MM-DD.HH24:MI:SS' );</FONT></DIV> <DIV><FONT size=3D2>BEGIN</FONT></DIV>
that.</FONT></DIV> <DIV><FONT size=3D2></FONT> </DIV> <DIV><FONT size=3D2>Any comments / corrections/ elucidations?</FONT></DIV> <DIV><FONT size=3D2></FONT> </DIV> <DIV><FONT size=3D2>Regards<BR>Oweson=20 Flynn<BR>------------------------------------------------------------------=<BR>The=20
m:</B>=20 <A href=3D"mailto:lkoivu_at_qode.com" title=3Dlkoivu_at_qode.com>Koivu, Lisa</A= > </DIV> <DIV style=3D"FONT: 10pt arial"><B>To:</B> <A href=3D"mailto:ORACLE-L_at_fat=city.com"=20
size=3D2>Ft. Lauderdale, FL, USA</FONT> </P>
<P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT size=3D2>Fr=
om:=20
Toepke, Kevin M [<A=20
href=3D"mailto:ktoepke_at_cms.cendant.com">mailto:ktoepke_at_cms.cendant.com</A=
>]</FONT>=20
<BR><FONT size=3D2>Sent: Wednesday, September 27, 2000 8:25 AM</FONT> <BR=
><FONT=20 size=3D2>To: Multiple recipients of list ORACLE-L</FONT> <BR><FONT=20 size=3D2>Subject: RE: Performance Problem.</FONT> </P><BR><P><FONT size=3D2>The SELECT from DUAL is a problem. It is not needed. Re= code as=20
size=3D2> &nbs=
p; &=
nbsp; =20
'YYYY-MM-DD.HH24:MI:SS') +</FONT> <BR><FONT=20
size=3D2> &nbs=
p; &=
nbsp; =20
(tstamp/86400000000),'dd-mm-yyyy'));</FONT>=20
<BR> <FONT size=3D2>END;</FONT>=
</P>
<P><FONT size=3D2>If you have the space, create an index on the 17Mill ro=
w table=20
that contains</FONT> <BR><FONT size=3D2>all of the columns you need. Make=
sure=20
the columns in the index are in the</FONT> <BR><FONT size=3D2>same order =
as the=20
columns in ORDER BY clause -- reduce I/O plus no sorting</FONT> <BR><FONT=
size=3D2>required.</FONT> </P> <P><FONT size=3D2>Kevin</FONT> </P> <P><FONT size=3D2>> </FONT><BR><FONT size=3D2>> </FONT><BR><FONT si=ze=3D2>>=20
timestamp column, that is passed to the</FONT> <BR><FONT size=3D2>>=20
procedure, to a date. </FONT><BR><FONT size=3D2>> eg select=20
tstamp_to_date(colname), ..... from table where ....</FONT> <BR><FONT=20
size=3D2>> The function is:</FONT> <BR><FONT size=3D2>> BEGIN</FONT=
>=20
<BR><FONT size=3D2>> select=20
to_char(to_date('1970-01-01.09:30:00', </FONT><BR><FONT size=3D2>>=20
'YYYY-MM-DD.HH24:MI:SS') +</FONT> <BR><FONT size=3D2>>=20
(tstamp/86400000000),'dd-mm-yyyy') </FONT><BR><FONT size=3D2>> &n=
bsp;=20
into ts_date from dual;</FONT> <BR><FONT size=3D2>> return=
ts_date;</FONT> <BR><FONT size=3D2>> END;</FONT> <BR><FONT size=3D2>&g=
t;=20
</FONT><BR><FONT size=3D2>> Would there be a great improvement if we p=
inned=20
the function </FONT><BR><FONT size=3D2>> into memory, or</FONT> <BR><F=
ONT=20
size=3D2>> should we just replace it all together which I believe is=
possible. </FONT><BR><FONT size=3D2>> </FONT><BR><FONT size=3D2>> 2=
. The=20
huge cursor, on a table of 17mill rows, that drives </FONT><BR><FONT=20
size=3D2>> the report is</FONT> <BR><FONT size=3D2>> using 7.5Gb of=
temporary tablespace because of the hash joins </FONT><BR><FONT size=3D2>=
> of=20
full table</FONT> <BR><FONT size=3D2>> scans & order by.</FONT> <B=
R><FONT=20
size=3D2>> </FONT><BR><FONT size=3D2>> Would it be better to scan t=
he large=20
table and select the </FONT><BR><FONT size=3D2>> records required</FON=
T>=20
<BR><FONT size=3D2>> (maybe 1.5mill) into another table that is Primar=
y keyed=20
on </FONT><BR><FONT size=3D2>> the required</FONT> <BR><FONT size=3D2>=
>=20
Order and then report from that table so eliminating the </FONT><BR><FONT=
size=3D2>> order by and the</FONT> <BR><FONT size=3D2>> need for th=
e=20
temporary tablespace??</FONT> <BR><FONT size=3D2>> </FONT><BR><FONT=20
size=3D2>> </FONT><BR><FONT size=3D2>> Any help would be greatly=20
appreciated.</FONT> <BR><FONT size=3D2>> </FONT><BR><FONT size=3D2>>=
;=20
Thanks</FONT> <BR><FONT size=3D2>> Ian</FONT> <BR><FONT size=3D2>> =
--=20
</FONT><BR><FONT size=3D2>> Please see the official ORACLE-L FAQ: <A=
href=3D"http://www.orafaq.com" target=3D_blank>http://www.orafaq.com</A><=
/FONT>=20
<BR><FONT size=3D2>> -- </FONT><BR><FONT size=3D2>> Author: Biddell=
,=20
Ian</FONT> <BR><FONT size=3D2>> INET:=20
Ian.Biddell_at_compaq.com</FONT> <BR><FONT size=3D2>> </FONT><BR><FONT=20
size=3D2>> Fat City Network Services -- (858)=20
538-5051 FAX: (858) 538-5051</FONT> <BR><FONT size=3D2>> San Die=
go,=20
California -- Public Internet a=
ccess=20
/ Mailing Lists</FONT> <BR><FONT size=3D2>>=20
--------------------------------------------------------------------</FON=T>=20
information (like subscribing).</FONT> <BR><FONT size=3D2>> </FONT><BR=
><FONT=20
size=3D2>-- </FONT><BR><FONT size=3D2>Please see the official ORACLE-L FA=
Q: <A=20
href=3D"http://www.orafaq.com" target=3D_blank>http://www.orafaq.com</A><=
/FONT>=20
<BR><FONT size=3D2>-- </FONT><BR><FONT size=3D2>Author: Toepke, Kevin M</=
FONT>=20
<BR><FONT size=3D2> INET: ktoepke_at_cms.cendant.com</FONT> </P>
<P><FONT size=3D2>Fat City Network Services -- (858)=20
538-5051 FAX: (858) 538-5051</FONT> <BR><FONT size=3D2>San Diego,=
California -- Public Internet a=
ccess=20
/ Mailing Lists</FONT> <BR><FONT=20
size=3D2>----------------------------------------------------------------=----</FONT>=20
*******************************************************************<BR><BR>
![]() |
![]() |