Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Rollback in my workspace

BernardoNov 19 2012 — edited Nov 21 2012
I have a big big problem...

One field (closure date) in one of my tables modified itself and I can't find the reason. 174 records modified the field with this value: 19-NOV-2012 15:54:39.

I have this trigger to set the closure date value when the status is closed:
create or replace TRIGGER "SD_INCIDENTS_TIME2"
BEFORE
update on "PROBLEMS"
for each row
begin
    IF (:new.STATUS='CLOSED') THEN
    :new.CDATE :=SYSTIMESTAMP AT TIME ZONE '-3:00';
    END IF;
end;
I have been doing tests to determine if this trigger did the problem but not....

The other thing that I want to know is where can I find the logs to see who did those changes or what triggered that..

Thanks, Bernardo

Regards
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 19 2012
Added on Nov 19 2012
11 comments
203 views