Click to See Complete Forum and Search --> : Auditing


JGolightly
11-07-2000, 09:42 AM
I would like to be able to identify which tables have been altered during the previous day (inserts, deletes, updates and structural changes).

I presume that auditing would provide the information I need, but I have no idea how to go about it.

I'm running 8i standard edition on NT

Can anyone help ?

Halo
11-07-2000, 09:55 AM
audit all on schema_name.table_name;
The audit entries will be inserted in the sys.aud$ table. Keep an eye on the growth of this table.

pando
11-07-2000, 10:05 AM
set audit_trail=db in initSID.ora

JGolightly
11-07-2000, 10:23 AM
Halo

Do I need to do this for every table ?

Or is there something I can set by say, user ?

raghucharan
11-07-2000, 10:48 AM
As he mentioned set this value in your initSID.ora file not for every table

Halo
11-07-2000, 10:48 AM
I believe you would have to do that for every table.

raghucharan
11-07-2000, 10:52 AM
Hi
You have to set initilization parameter file nothing but init.ora file not for every table and u cant set this for every table.U can set this to DB or OS or NONE

JGolightly
11-07-2000, 10:56 AM
If I want to turn off audting for a table, what do I do ?

raghucharan
11-07-2000, 01:09 PM
Once u set the parameter.You have to issue an audit command on the objects what u want to audit.At the same time u have noaudit command for the object which you dont want to audit.