Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: sys.aud$

Re: sys.aud$

From: <premmehrotra_at_hotmail.com>
Date: 8 Feb 2005 14:31:06 -0800
Message-ID: <1107901866.216434.73760@l41g2000cwc.googlegroups.com>

Anurag Varma wrote:
> Michel's reply was all you needed.
> You should create your own views similar to dba_audit_trail and
> dba_audit_session.
>
> Lookup the original view definition of the dba view:
>
> set long 10000
> select view_text from dba_views where view_name = 'DBA_AUDIT_TRAIL';
>
> You would then create your own views:
>
> create or replace my_audit_trail
> as
> select .......
> from (select * from sys.aud$ union all select * from
> myschema.myaudittable) aud, .....
> /

Anurag:
That's what I started doing, but wanted to make sure whether there are any shortcuts.  

Thanks. As always, appreciate your useful responses.

Prem Received on Tue Feb 08 2005 - 16:31:06 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US