Hi
Last day my head judge me because he face with some problem that he didnot has it before!
but I didnt do any thing with database and also our company CM database is so critical !
In this case can he proof what I do with database???
Oracle have any log!
some functaion updating in last 2days that I didnt update it and he also...
please help me,how I can proof who do the mistake.
how I can find who with which user connect to database and update or change some thing...
views:
44answers:
2
+1
A:
You can see when database objects were last modified (recompiled/altered/created) this way:
SELECT object_name, last_ddl_time
FROM dba_objects
ORDER BY last_ddl_time DESC;
jva
2010-06-04 11:34:15
but there is no way to find who do it :(
rima
2010-06-07 03:44:37
+1
A:
There are redo logs (which are used to recover from a backup), but they don't record the username, workstation or anything else that identifies who made a data change.
Gary
2010-06-05 00:55:25