Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SP and Functions

Status
Not open for further replies.

DKL01

Programmer
Sep 14, 2000
233
0
0
US
Hi,

I'm new to Oracle and functions in Oracle. Is it possible what I'm trying to do with function ?

Please ignore the syntax.

Thanks


Create or Replace Procedure Proc1

select EmpID, EmpName, BasicSalary, Allowance

from Employee

where GetPercent (BasicSalary, Allowance) > 10000

End Proc1

Create or Replace Function GetPercent
Return BasicSalary + Allowance;
End GetPercent
 
Assuming that you are sending 2 parameters to the GetPercent function, doing something in the function and returning a single number value back, and using the same function in the where clause of select, your peice of code should work.

 
Just as a warning, while the suggestion should work
because it assures the proper purity- not modifying
package states, etc, watch out for a performance
hit, at least in terms of CPU consumption if you
use functions in queries.
(especially where clauses, since you hit every row
and can't take advantage of indices.
)
 
When you declare the function, add this piece of code:

[tt]PRAGMA RESTRICT_REFERENCES (GetPercent, WNDS, WNPS, RNDS, RNPS);[/tt]

It assures, that the conditions named by johnfuller360 are fullfilled. Compiler requires the pragma.
 
To call it from SQL you need RNPS, WNPS only for remote (called via dblink) functions. Your function MUST have WNDS purity level. In the case of using it in WHERE clause it also must have WNPS.
In fact you do need to declare purity level only if it's packaged. Oracle is robust enough to check it for standalone function itself (AFAIK 8i may also check it during runtime, but performance may degrade).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top