Posts Tagged ‘sys_context’

SYS_CONTEXT in Oracle

Oracle has a very useful built-in function called SYS_CONTEXT. The syntax of this function goes like this:

SYS_CONTEXT ( ‘namespace’ , ‘parameter’ [, length] )

SYS_CONTEXT returns the value of parameter associated with the context namespace. You can use this function in both SQL and PL/SQL statements.

What makes this function more interesting is the fact that […]