通过shell脚本监控oracle session

最近数据库碰到了连接紧张的问题,想通过一个脚本对数据库的session情况一目了然。
以下是自己写的脚本。实现的效果如下。
对session的总体情况,那些program主要在占用,每个用户所拥有的session(active,inactive,killed,sniped...)都能够一目了然。

STATUS          CNT
-------- ----------
KILLED          553
SNIPED         2028
ACTIVE           44
INACTIVE       6097
         ----------
sum              8722
.


PROGRAM                                    CNT STATUS
----------------------------------- ---------- --------
JDBC Thin Client                                  2316 INACTIVE
program1@machine01 (TNS V1-V3)         659 INACTIVE
program2@machine02 (TNS V1-V3)         572 INACTIVE
program4@machine01 (TNS V1-V3)         462 SNIPED
program3@machine01 (TNS V1-V3)         449 INACTIVE
program4@machine02 (TNS V1-V3)         391 INACTIVE
program1@machine01 (TNS V1-V3)         349 SNIPED
JDBC Thin Client                                   342 SNIPED
program2@machine01 (TNS V1-V3)           268 INACTIVE
                                    ----------
sum                                                       5808
.


USERNAME             TOTAL_CNT     ACTIVE   INACTIVE     KILLED     SNIPED program1  program2  program3
--------------- ---------- ---------- ---------- ---------- ---------- ---------------- -------------- -----------
TESTUSER46               428          0            174        253          1              114            181          32
TESTUSER5                424          0            309          0        115              137            188          35
TESTUSER2                422          0              8        300        114              143            172          35
TESTUSER29               414          1            226          0        187              165            102          47
TESTUSER6                399          0            268          0        131               82            196          35
TESTUSER9                394          0            281          0        113              131            162          35
TESTUSER7                358          0            232          0        126               67            192          36
TESTUSER23               345          0            212          0        133               52            178          35
TESTUSER21               338          0            229          0        109               79            161          35
TESTUSER25               330          0            216          0        114               66            156          34
TSTAPP1                    313          0            195          0        118               31            182           3
TESTUSER30               299          0            298          0          1              110             92          32
TESTUSER22               297          0            286          0         11              106            112          32
TSTAPP12                   287          0            164          0        123               66            126          35
TESTUSER31               287          0            286          0          1              107            104          32
TESTUSER42               265          0            262          0          3               68            125          32
TESTUSER11               254          0            250          0          4               52            105          32
TESTUSER52               247          0            158          0         89                4            170          33
TSTAPP16                   241          0            232          0          9               54            110          32
TSTAPP8                    220          0            220          0          0               47            102          32
TSTAPP2                    220          0            215          0          5               74             93          32
TESTUSER32               149          0            149          0          0                2             76          32
TESTUSER51               134          0             18          0        116               30             77           1
TESTUSER3                104          0             17          0         87               34             50           3
TESTUSER45                95          0              0          0         95               12             65           0
TESTUSER44                69          0             21          0         48               22             31           3



附上脚本内容:

sqlplus -s $DB_CONN_STR@$SH_DB_SID < set feed off
set verify off
set line 132
set pages 200


col username format a15
col sql_id format a20
col sql_address format a20
col machine format a30
col osuser format a15
col logon_time format a10
col program format a35
break on report
compute sum of  cnt  on report
select status,count(*) cnt from v\$session group by status;
prompt .


select program,cnt,status from (select program,count(*) cnt,status from v\$session group by program,status order by cnt desc) where rownum<10;


prompt .
  select username,
      sum(cnt) total_cnt,
      sum(decode(status,'ACTIVE', cnt,0)) ACTIVE,
      sum(decode(status,'INACTIVE', cnt,0)) INACTIVE,
      sum(decode(status,'KILLED', cnt,0)) KILLED,
      sum(decode(status,'SNIPED', cnt,0)) SNIPED,
     $issue_program1 "JDBC Thin Client",
     $issue_program2  "program1",
     $issue_program3  "program2"
     from (select program,username,status,count(*) cnt from V\$SESSION   group by program,username,status  ) 
    group by username having sum(cnt)>50 order by total_cnt desc;


EOF
exit


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/23718752/viewspace-776143/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/23718752/viewspace-776143/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个示例脚本,用于连接Oracle数据库并导入表: ``` #!/bin/bash #设置连接信息 user="username" password="password" host="hostname" port="port" database="database_name" #设置导入表信息 schema="schema_name" table="table_name" input_file="/path/to/input/file.csv" #连接数据库并导入表 sqlplus -S $user/$password@$host:$port/$database <<EOF set feedback off set verify off set heading off set pagesize 0 set linesize 2000 set trimspool on set echo off --创建临时表 create table tmp_$table as select * from $schema.$table where 1=2; --导入数据到临时表 alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss'; set colsep ',' set numwidth 38 set trimspool on set term off set feedback off set verify off set heading off set pagesize 0 set linesize 32767 set echo off spool /dev/null @/path/to/sqlldr.ctl $input_file spool off --导入数据到目标表 insert into $schema.$table select * from tmp_$table; --删除临时表 drop table tmp_$table; exit; EOF ``` 上面的脚本首先设置了连接信息和导入表的信息。然后,它使用sqlplus命令连接到数据库,并使用SQL语句创建一个临时表。接下来,它使用sqlldr命令将数据从CSV文件加载到临时表中。最后,它使用insert语句将数据从临时表复制到目标表中,并删除临时表。请注意,您需要将脚本中的用户名,密码,主机名,端口号,数据库名称,模式名称,表名称,输入文件路径和sqlldr控制文件路径更改为适合您的环境的值。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值