Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> looping synonyms and auditing
How do you fix a looping chain of syns? Drop the synonym and recreate the
public synonym?
sys_at_ORCL> create or replace public synonym DBA_AUDIT_TRAIL for
DBA_AUDIT_TRAIL
2 /
Synonym created.
sys_at_ORCL> grant select on DBA_AUDIT_TRAIL to select_catalog_role
2 /
grant select on DBA_AUDIT_TRAIL to select_catalog_role
*
What is the difference between these two? Metalink has a doc 99786.1 about audit connect.
audit session
audit connect
Oracle will take both entries:
sys_at_ORCL> audit session whenever successful;
Audit succeeded.
Elapsed: 00:00:00.02
sys_at_ORCL> audit session whenever not successful;
Audit succeeded.
Elapsed: 00:00:00.01
sys_at_ORCL> audit connect whenever successful;
Audit succeeded.
Elapsed: 00:00:00.04
sys_at_ORCL> audit connect whenever not successful;
Audit succeeded.
Will Oracle do both?
audit session whenever successful
audit session whenever not successful
Will Oracle record both successful and not successful attempts? Or one or the other?
thanks.
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Sep 19 2006 - 08:18:26 CDT
![]() |
![]() |