Hi,
I understand that....
...will allow one to see the DELETE-SQL statements issued on a particular table. My question is, is it possible that Oracle did not log the DELETE command issued (or possibly any command for that matter)? I asked because we did lose some records in a particular table but we were unable to determine the source or who made the deletion because it did not show up in the SQL statement above.
Thanks in advance.
kilroy
philippines
"Once a king, always a king. But being a knight is more than enough."
I understand that....
Code:
select *
from V$sqlarea
where command_type = 7
order by first_load_time desc;
...will allow one to see the DELETE-SQL statements issued on a particular table. My question is, is it possible that Oracle did not log the DELETE command issued (or possibly any command for that matter)? I asked because we did lose some records in a particular table but we were unable to determine the source or who made the deletion because it did not show up in the SQL statement above.
Thanks in advance.
kilroy
philippines
"Once a king, always a king. But being a knight is more than enough."