How can I know the sys_context of other sessions?
I am familiar with the use of application contexts, in particular the "USERENV" contexr provided out of the box as follows:
SELECT sys_context('<namespace>', '<parameter>', <length>);
FROM dual;
When I log on with DBA privs, I can easily see my own session context. However, I would like to see the sys_context of other sessions - is there a view or table that I can use to do this?
SELECT sys_context('<namespace>', '<parameter>', <length>);
FROM dual;
When I log on with DBA privs, I can easily see my own session context. However, I would like to see the sys_context of other sessions - is there a view or table that I can use to do this?
0