current user

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jisuprusty
    New Member
    • Mar 2008
    • 7

    current user

    is it possible to show who is the current user with out using the command show user?????
  • amitpatel66
    Recognized Expert Top Contributor
    • Mar 2007
    • 2358

    #2
    Originally posted by jisuprusty
    is it possible to show who is the current user with out using the command show user?????
    [code=oracle]

    SQL> select user from dual;

    USER
    ------------------------------
    APPS

    SQL> select user_name from v$session WHERE OSUSER = <your operating system Login>

    [/code]

    Comment

    Working...