2014-09-17 13:23:48 +02:00

7 lines
162 B
SQL

select * from (
select timestamp, username, os_username, userhost, terminal, action_name
from dba_audit_session
order by timestamp desc
)
where rownum <= 20;