![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello Are there any differences between using sys_context in an SQL statement and using a regular function? *I'm not concerned here with the security around setting the values, just the speed of accessing the value in an SQL statement, and in particular whether Oracle has any special ability to optimize calls to SYS_CONTEXT that it doesn't have with a user defined function. A did a couple of explain plans on some queries using a packaged function and SYS_CONTEXT, and they both show up as basically the same plan (the sys_context needed a to_number). * * * * select * from my_table * * * * where org_id = my_pkg.fn_wanted_org_id; * * * * select * from my_table * * * * where org_id = SYS_CONTEXT('APP_CTX','RPT_CENTRE_ID'); but maybe there are situations where it would make a speed difference that I haven't considered. Thanks for feedback. |
![]() |
| Thread Tools | |
| Display Modes | |
| |