Tip

Who is logged into the database?

Here is a shell script that will list all the Oracle users that are logged in to all databases on your HP-UX machine.

#!/bin/ksh
export ORAENV_ASK=NO
ps -ef | grep -i oracle | grep "LOCAL=" | grep -v grep  |cut -d"?" -f2- | cut -
d"oracle" -f2- | cut -c6- | cut -d" " -f-1 | sort -u |while read ORACLE_SID

do
  . oraenv
# echo $ORACLE_SID
  sqlplus -s internal << EOF
    set verify off 
    set feedback 0
    set lines 133
    set pages 0
    column osuser format a18
    col name noprint new_value dbname
    select name from v$database;

    select '&dbname' , s.osuser
    from v$session s, v$process p
    where
      s.paddr = p.addr and
      s.type != 'BACKGROUND' and
      s.osuser is not null and
      s.osuser !='oracle' and
      s.audsid != userenv('SESSIONID') and
    union all
    select '&dbname' , s.schemaname
    from v$session s, v$process p
    where
      s.paddr = p.addr and
      s.type != 'BACKGROUND' and
      s.osuser is not null and
      s.osuser ='oracle' and
      s.audsid != userenv('SESSIONID') ;
    exit
EOF

done

About the Author

James Giordano is an Oracle database administrator. He has been working with Oracle for about seven years, and also has experience with UNIX and PeopleSoft/Oracle financials.

For More Information

  • What do you think about this tip? E-mail the Editor at

    Requires Free Membership to View


This was first published in January 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.