Solved

CREATE OR REPLACE TRIGGER Logon_trg

Question 9

Multiple Choice

CREATE OR REPLACE TRIGGER logon_trg
AFTER logon ON SCHEMA
BEGIN
INSERT INTO bb_audit_logon
VALUES (USER, SYSDATE) ;
END;
In the code fragment above, which of the ____ statement represents the system event.


A) logon
B) INSERT
C) SYSDATE
D) AFTER

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions