Which system events can be used to create triggers that fire both at database and schema levels?

Which system events can be used to create triggers that fire both at database and schema levels?
(Choose all that apply)

Which system events can be used to create triggers that fire both at database and schema levels?
(Choose all that apply)

A.
AFTER LOGON

B.
AFTER STARTUP

C.
BEFORE SHUTDOWN

D.
AFTER SERVERERROR

Explanation:



Leave a Reply 10

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


samkelo siyabonga ngubo

samkelo siyabonga ngubo

D is an answer
A is wrong because it doesn’t fire both database and schema

larissa

larissa

I think it is only D.

juzz4fun

juzz4fun

Ans: D.
A – AFTER LOGON — this is not a system event, this is a client event.
B – AFTER STARTUP — this fires only on database
C – BEFORE SHUTDOWN – this fires only on database
D – SERVERERROR — this can fire on both database as well as schemas.

https://docs.oracle.com/cd/B10501_01/appdev.920/a96590/adg14evt.htm

juzz4fun

juzz4fun

also, SERVERERROR is a system even (that’s what asked in the question).