How would you achieve this?

You suspect unauthorized data manipulation language (DML) operations on a particular table. You want to track users who are performing the transactions and the values used in the transactions. Also, you plan to transfer these values to another table for analysis. How would you achieve this?

You suspect unauthorized data manipulation language (DML) operations on a particular table. You want to track users who are performing the transactions and the values used in the transactions. Also, you plan to transfer these values to another table for analysis. How would you achieve this?

A.
by using anonymous PL/SQL blocks

B.
by using triggers

C.
by auditing all DML operations on the table

D.
by using external tables



Leave a Reply 1

Your email address will not be published. Required fields are marked *


awing

awing

Undoubtedly triggers can to used to track the DML statements fired from the users. It can also be used to move data from one table to another as in:

create trigger transaction_state after update on test_archive
begin
insert into test_me
select * from test_archive where Transaction_status = 2;
delete from test_archive where Transaction_status = 2;
end;