is it possible to show who is the current user with out using the command show user?????
current user
Collapse
X
-
Tags: None
-
Originally posted by jisuprustyis it possible to show who is the current user with out using the command show user?????
SQL> select user from dual;
USER
------------------------------
APPS
SQL> select user_name from v$session WHERE OSUSER = <your operating system Login>
[/code]
Comment