【問卷-英文學習功能需求】只要填寫就能獲得500Y,結束時間 2024/06/03 12:00。 前往查看

資料庫管理系統(AS2)題庫下載題庫

上一題
QUESTION 39 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?
(A) The trigger records an audit trail when a user makes changes to the database.
(B) The trigger marks the user as logged on to the database before an audit statement is issued.
(C) The trigger invoked the procedure audit_action each time a user logs on to his/her schema and adds the username to the audit table.
(D) The trigger invokes the procedure audit_action each time a user logs on to the database and adds the username to the audit table.


QUESTION 39 Examine this code: CREATE ..-阿摩線上測驗