The closest you will be able to get to oracle builtin performance for a function is to use native compilation.
To mimic SYS.STANDARD and SYS.DBMS_STANDARD open-security you will need to create public synonyms for your functions and grant execute to public.
Note, 10g and 11g have different setups for native compilation (11g is much easier)
10g
http://download.oracle.com
11g
http://download.oracle.com
Main Topics
Browse All Topics





by: schwertnerPosted on 2009-10-20 at 06:34:05ID: 25613898
The main thing in performance tuning is>
1. To analzye the JOIN conditions in the WHERE clause
2. To cretate appropriate indexes over the affected columns
3. To invoke the procedure for computing the statistics.
All this will allow the Optimiyer to build good and fast
execution plan.