Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> is there better way than the call a function twice.

is there better way than the call a function twice.

From: Duret, Kathy <kduret_at_starkinvestments.com>
Date: Tue, 2 Nov 2004 16:49:13 -0600
Message-ID: <07BA8175B092D611B1DE00B0D049A31501B0BE0A@exchange.ad.starkinvestments.com>


oh magic eight ball is there a better way than calling a ugly function twice when I need two columns returned with the same value.

I hate the call the function twice because it is very costly.

what I need to do is:
select x,y,z, ugly_function as ugly1, ugly_function ugly2 from a

when I do.... it actually gives me worse results ie. more physical reads....

select x,y,z , ugly1, ugly1 as ugly2 from ( select x,y,z, ugly_function ugly1 from a)

Is there anyway around this?

Kathy.

This transmission contains information solely for intended recipient and may be privileged, confidential and/or otherwise protect from disclosure. If you are not the intended recipient, please contact the sender and delete all copies of this transmission. This message and/or the materials contained herein are not an offer to sell, or a solicitation of an offer to buy, any securities or other instruments. The information has been obtained or derived from sources believed by us to be reliable, but we do not represent that it is accurate or complete. Any opinions or estimates contained in this information constitute our judgment as of this date and are subject to change without notice. Any information you share with us will be used in the operation of our business, and we do not request and do not want any material, nonpublic information. Absent an express prior written agreement, we are not agreeing to treat any information confidentially and will use any and all information and reserve the right to publish or disclose any information you share with us.

--
http://www.freelists.org/webpage/oracle-l
Received on Tue Nov 02 2004 - 16:45:13 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US