User session Monitor from Shell Script [oracle@superlinux ~]$ cat user_session_monitor.sh #!/bin/sh if [ $# -ne 1 ] then echo "Usage: $0 pass the pid" exit 1 fi HOSTNAME=`hostname` U=$1 export U sqlplus -s "/ as sysdba" << EOI set linesize 500 col hostname for a15 col program for a15 col username for a15 col osuser
The post User Administration scripts appeared first on www.ORACLE-CKPT.com.