免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1532 | 回复: 0
打印 上一主题 下一主题

[数据库] shell脚本与oracle [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-04-03 21:00 |只看该作者 |倒序浏览
1、use shell script to execute sql statement and output to a local file with sqlplus;
  1. #!/bin/sh
  2. tempfile=./tmp/audit_locked_accounts_$ORACLE_SID.txt
  3. # Start sqlplus and check for locked accounts
  4. sqlplus -S users/password@dblink << EOF >$tempfile

  5.         set pagesize
  6.         select 'The following accounts were found to be unlocked and should not be'
  7.         from dual;
  8.         define exit_status = 0
  9.         column xs new_value exit_status
  10.         select username, account_status, 1 as xs from dba_users
  11.         where account_status != 'LOCKED'
  12.           and username in ('HR','SCOTT','OUTLN', 'MDSYS', 'CTXSYS');
  13.         exit &exit_status
  14. EOF
  15. # If the exit status of sqlplus was not 0 then we will send an email
  16. if [ $? != 0 ]
  17. then
  18.         mail -s "Accounts Unlocked in $ORACLE_SID" oracle < $tempfile
  19. fi
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP