- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
2#
发表于 2012-4-25 11:53:04
action plan:
贴出以下 SQL的输出
select * from v$version ;
set linesize 140 pagesize 1400
col os_username for a30
col userhost for a30
col terminal for a30
select os_username,userhost,terminal,username,count(*)
from dba_audit_trail
where returncode = 1017
group by os_username,userhost,username,terminal
having count(*)>5
/ |
|