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

Home -> Community -> Usenet -> comp.databases.theory -> Re: SQL Server and User Defined Functions

Re: SQL Server and User Defined Functions

From: Patrick Dehne <patr3ck_at_steidle.net>
Date: Wed, 20 Mar 2002 09:23:07 +0100
Message-ID: <a79gtb$llt$00$1@news.t-online.com>

Performance can go down if you have a lot of data and long running user defined functions. Consider for example:

select myfunction(namecolumn) from mylargetable

The user defined function is applied for *every* row of the result. Udf's are a good tool, but they have to be applied with care...

-- 
Patrick Dehne
patr3ck_at_steidle.net
Received on Wed Mar 20 2002 - 02:23:07 CST

Original text of this message

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