| René Nyffenegger's collection of things on the web | |
|
René Nyffenegger on Oracle - Most wanted - Feedback
|
sys_context [Oracle] | ||
sys_context(namespace_string, parameter_string) sys_context(namespace_string, parameter_string, len) Current session
sys_context can for example be used to find out which row in v$session
is the "current" session:
select sid from v$session where audsid=sys_context('userenv','SESSIONID');
Attributes for userenv
Links
See also create context.
|