Oracle Database [message #362139] |
Mon, 01 December 2008 03:19 |
tkmittal1
Messages: 143 Registered: May 2007 Location: Delhi
|
Senior Member |
|
|
Hi
I have enabled the audit for creating the session either successful or faliure & using the following sql command to check the no of time failure or success
============================================================
select count(*),username,terminal,to_char(timestamp,'DD-MON-YYYY'),returncode
from dba_audit_session where username='TEST'
group by username,terminal,to_char(timestamp,'DD-MON-YYYY'),returncode
=============================================================
ON Success it showing the count 1 which is Ok But on every failure it is counting 2 while i am trying to connect from oracle client.
Can u suggest & Advise why it is so
Thanks
TM
|
|
|
|
Re: Oracle Database [message #362180 is a reply to message #362139] |
Mon, 01 December 2008 04:51 |
tkmittal1
Messages: 143 Registered: May 2007 Location: Delhi
|
Senior Member |
|
|
Hi
-----------------------------------------------------------------
COUNT(*) USERNAME TERMINAL TO_CHAR(TIMESTA RETURNCODE
--------- ---------- --------------- --------------- ----------
25 TEST Windows NT PC 01-DEC-2008 0
20 TEST Windows NT PC 01-DEC-2008 1017
-----------------------------------------------------------------
Thanks
|
|
|
|
|
|
Re: Oracle Database [message #362336 is a reply to message #362229] |
Mon, 01 December 2008 21:22 |
tkmittal1
Messages: 143 Registered: May 2007 Location: Delhi
|
Senior Member |
|
|
I m simpliy saying after one login failure attempt it consider it two login failure.
However it should be one if i have attempt once
hope this time you got it
Thanks
|
|
|
Re: Oracle Database [message #362342 is a reply to message #362336] |
Mon, 01 December 2008 22:29 |
tkmittal1
Messages: 143 Registered: May 2007 Location: Delhi
|
Senior Member |
|
|
Now showing the output what i have explaine. Failure is once but it showing 2. however success is OK
-----------------------------------------------------------------
COUNT(*) USERNAME TERMINAL TO_CHAR(TIMESTA RETURNCODE
--------- ---------- --------------- --------------- ----------
1 TEST Windows NT PC 01-DEC-2008 0
2 TEST Windows NT PC 01-DEC-2008 1017
-----------------------------------------------------------------
|
|
|
|
|
|
|
Re: Oracle Database [message #362383 is a reply to message #362369] |
Tue, 02 December 2008 01:59 |
tkmittal1
Messages: 143 Registered: May 2007 Location: Delhi
|
Senior Member |
|
|
It not showing the two rows instead it add the count(*) by 2 number like on first failure count column value is 2 and on second failure count column values is 4 so on..... in the same date
|
|
|
|
|