| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: SQL Server and User Defined Functions
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.netReceived on Wed Mar 20 2002 - 02:23:07 CST
![]() |
![]() |