Online Access Free 1Z0-147 Practice Test
Exam Code: | 1Z0-147 |
Exam Name: | Oracle9i program with pl/sql |
Certification Provider: | Oracle |
Free Question Number: | 111 |
Posted: | Sep 06, 2025 |
Examine this code:
CREATE OR REPLACE PROCEDURE audit_action (p_who VARCHAR2) AS BEGIN INSERT INTO audit(schema_user) VALUES(p_who); END audit_action; /
CREATE OR REPLACE TRIGGER watch_it AFTER LOGON ON DATABASE CALL audit_action(ora_login_user) / What does this trigger do?
All users currently have the INSERT privilege on the PLAYER table. You only want your users to insert into this table using the ADD_PLAYTER procedure. Which two actions must you take? (Choose two)