DBA Data[Home] [Help]

SYS.DBMS_HA_ALERTS_PRVT dependencies on DBMS_SERVER_ALERT

Line 24: * dbms_server_alert.RSN_FAN_DATABASE_DOWN)

20: *
21: * PARAMETERS
22: *
23: * reason_id - taken from dbmsslrt.sql (e.g.
24: * dbms_server_alert.RSN_FAN_DATABASE_DOWN)
25: *
26: * same_transaction - the post should occur in the caller's
27: * transaction (which must already have been
28: * started) [passes KELT_SAME_TRAN to keltpost].

Line 42: * dbms_server_alert.LEVEL_* (see dbmsslrt.sql).

38: * Note: calls keltpos[_bg] first w/ LEVEL_CLEAR,
39: * then calls again with requested severity.
40: *
41: * severity - an integer severity level (such as critical), one of
42: * dbms_server_alert.LEVEL_* (see dbmsslrt.sql).
43: * Defaults to LEVEL_WARNING.
44: *
45: * host_name - the host that failed, or the host on which the
46: * resource affected was run

Line 104: PROCEDURE post_ha_alert(reason_id IN dbms_server_alert.

100: * This means that two events with different event time, incarnation, etc.
101: * will still be treated as equivalent.
102: *
103: ****************************************************************************/
104: PROCEDURE post_ha_alert(reason_id IN dbms_server_alert.
105: reason_id_t,
106: same_transaction IN BOOLEAN,
107: clear_old_alert IN BOOLEAN,
108: severity IN dbms_server_alert.

Line 108: severity IN dbms_server_alert.

104: PROCEDURE post_ha_alert(reason_id IN dbms_server_alert.
105: reason_id_t,
106: same_transaction IN BOOLEAN,
107: clear_old_alert IN BOOLEAN,
108: severity IN dbms_server_alert.
109: SEVERITY_LEVEL_T
110: DEFAULT
111: dbms_server_alert.
112: LEVEL_WARNING,

Line 111: dbms_server_alert.

107: clear_old_alert IN BOOLEAN,
108: severity IN dbms_server_alert.
109: SEVERITY_LEVEL_T
110: DEFAULT
111: dbms_server_alert.
112: LEVEL_WARNING,
113: database_domain IN VARCHAR2 DEFAULT
114: SYS_CONTEXT('USERENV',
115: 'DB_DOMAIN'),