4

oracle 脚本实现简单的审计功能 -m6米乐安卓版下载

原创 2022-08-03
1488

前景

为了数据安全,生产环境开数据库审计的话会有很大的消耗,一般不建议开启。于是根据dba_hist_active_sess_history写了个shell 脚本,每天产生一个简单的审计报告。

审计脚本:audit_db.sh

#!/bin/sh export oracle_sid=two export oracle_unqname=two export oracle_base=/u01/app/oracle export oracle_home=/u01/app/oracle/11.2.0.3/product export path=$oracle_home/bin:$path export ld_library_path=$oracle_home/lib:$ld_library_path export nls_lang=american_america.al32utf8 export con_user='sqlplus -s / as dba' export au_dir='/u01/report/audit_db' audit_date=`date %y-%m-%d -d "1 day ago"` if [ ! -d ${au_dir}/${audit_date} ];then mkdir -p ${au_dir}/${audit_date} fi result=`$con_user <set colsep','; set echo off; set feedback off; set heading off; set pagesize 0; set linesize 1000; set numwidth 12; set termout off; set timing off; set trimout on; set trimspool on; set trims on; col username format a15 col machine format a30 col program format a50 col sql_opname format a20 spool ${au_dir}/${audit_date}/${audit_date}.txt select to_char(h.sample_time, 'yyyy-mm-dd hh24:mi:ss') exec_time, u.username, h.machine, h.program, h.sql_opname from sys.dba_hist_active_sess_history h left join sys.all_users u on u.user_id = h.user_id where h.module is not null and h.sql_opname is not null and to_char(h.sample_time, 'yyyy-mm-dd') = '$audit_date'; spool off eof` result_report=`$con_user <set colsep','; set echo off; set feedback off; set heading off; set pagesize 0; set linesize 800; set numwidth 12; set termout off; set timing off; set trimout on; set trimspool on; set trims on; col username format a15 col machine format a30 col program format a50 col sql_opname format a20 spool ${au_dir}/${audit_date}/${audit_date}.report select u.username, h.machine, h.program, h.sql_opname, count(*) from sys.dba_hist_active_sess_history h left join sys.all_users u on u.user_id = h.user_id where h.module is not null and h.sql_opname is not null and to_char(h.sample_time, 'yyyy-mm-dd') = '$audit_date' group by username, machine, program, h.sql_opname order by 5 desc; spool off eof`

输出日志:

[oracle@localhost 2022-08-02]$ cat 2022-08-02.report 业务用户 主机名 连接方式 操作类型 操作次数 two ,app.tomcat.com ,jdbc thin client ,select, 8610 two ,app1.tomcat.com ,jdbc thin client ,insert, 8610

                         文章推荐

postgresql url
《课程笔记:postgresql深入浅出》之 初识postgresql(一) https://www.modb.pro/db/475817
《课程笔记:postgresql深入浅出》之 postgresql源码安装(二) https://www.modb.pro/db/475933
《课程笔记:postgresql深入浅出》之初始化postgresql(三) https://www.modb.pro/db/479524
《课程笔记:postgresql深入浅出》之psql管理工具-常用(四) https://www.modb.pro/db/479560
《课程笔记:postgresql深入浅出》之psql管理工具-高级命令(四) https://www.modb.pro/db/479559
《课程笔记:postgresql深入浅出》之内存与进程(五) https://www.modb.pro/db/489936
《课程笔记:postgresql深入浅出》之外存&永久存储(六) https://www.modb.pro/db/502267
oracle: url
《oracle 自动收集统计信息机制》 https://www.modb.pro/db/403670
《oracle_索引重建—优化索引碎片》 https://www.modb.pro/db/399543
《dba_tab_modifications表的刷新策略测试》 https://www.modb.pro/db/414692
《fy_recover_data.dbf》 https://www.modb.pro/doc/74682
《oracle rac 集群迁移文件操作.pdf》 https://www.modb.pro/doc/72985
《oracle date 字段索引使用测试.dbf》 https://www.modb.pro/doc/72521
《oracle 诊断案例 :因应用死循环导致的cpu过高》 https://www.modb.pro/db/483047
《oracle 慢sql监控脚本》 https://www.modb.pro/db/479620
《oracle 慢sql监控测试及监控脚本.pdf》 https://www.modb.pro/doc/76068
《oracle 脚本实现简单的审计功能》 https://www.modb.pro/db/450052
《记录一起索引rebuild与收集统计信息的事故》 https://www.modb.pro/db/408934
greenplum: url
《pl/java.pdf》 https://www.modb.pro/doc/70867
《gp的资源队列.pdf》 https://www.modb.pro/doc/67644
《greenplum psql客户端免交互执行sql.pdf》 https://www.modb.pro/doc/69806
                       欢迎赞赏支持或留言指正
最后修改时间:2022-09-27 21:32:53
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
1人已赞赏
z
【米乐app官网下载的版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论

网站地图