DBA Data[Home] [Help]

GSMADMIN_INTERNAL.DBMS_GSM_ALERTS dependencies on ALERT_TYPE

Line 223: FUNCTION get_gsm_name (my_alert IN ALERT_TYPE

219: -- Note:
220: -- This will return the GSM name only if a GSM is involved in
221: -- the GDS alert.
222: -------------------------------------------------------------------------------
223: FUNCTION get_gsm_name (my_alert IN ALERT_TYPE
224: )
225: return VARCHAR2;
226:
227: -------------------------------------------------------------------------------

Line 240: FUNCTION get_instance_name (my_alert IN ALERT_TYPE

236: -- Note:
237: -- This will return the instance name only if an instance is involved in
238: -- the GDS alert.
239: -------------------------------------------------------------------------------
240: FUNCTION get_instance_name (my_alert IN ALERT_TYPE
241: )
242: return VARCHAR2;
243:
244: -------------------------------------------------------------------------------

Line 257: FUNCTION get_database_name (my_alert IN ALERT_TYPE

253: -- Note:
254: -- This will return the instance name only if a database is involved in
255: -- the GDS alert.
256: -------------------------------------------------------------------------------
257: FUNCTION get_database_name (my_alert IN ALERT_TYPE
258: )
259: return VARCHAR2;
260:
261: -------------------------------------------------------------------------------

Line 274: FUNCTION get_service_name(my_alert IN ALERT_TYPE

270: -- Note:
271: -- This will return the instance name only if a database is involved in
272: -- the GDS alert.
273: -------------------------------------------------------------------------------
274: FUNCTION get_service_name(my_alert IN ALERT_TYPE
275: )
276: return VARCHAR2;
277:
278: -------------------------------------------------------------------------------

Line 291: FUNCTION get_gdspool_name (my_alert IN ALERT_TYPE

287: -- Note:
288: -- This will return the GDS pool name only if a GDS pool is involved in
289: -- the GDS alert.
290: -------------------------------------------------------------------------------
291: FUNCTION get_gdspool_name (my_alert IN ALERT_TYPE
292: )
293: return VARCHAR2;
294:
295: -------------------------------------------------------------------------------

Line 308: FUNCTION get_region_name (my_alert IN ALERT_TYPE

304: -- Note:
305: -- This will return the region name only if a region is named in
306: -- the GDS alert.
307: -------------------------------------------------------------------------------
308: FUNCTION get_region_name (my_alert IN ALERT_TYPE
309: )
310: return VARCHAR2;
311:
312: -------------------------------------------------------------------------------

Line 325: FUNCTION get_resource_name (my_alert IN ALERT_TYPE

321: -- Note:
322: -- This will return the resource name only if it is a treshold limit
323: -- GDS alert.
324: -------------------------------------------------------------------------------
325: FUNCTION get_resource_name (my_alert IN ALERT_TYPE
326: )
327: return VARCHAR2;
328:
329: -------------------------------------------------------------------------------

Line 342: FUNCTION get_thresh_level (my_alert IN ALERT_TYPE

338: -- Note:
339: -- This will return the threshold level if it is a threshold
340: -- GDS alert.
341: -------------------------------------------------------------------------------
342: FUNCTION get_thresh_level (my_alert IN ALERT_TYPE
343: )
344: return VARCHAR2;
345:
346: -------------------------------------------------------------------------------

Line 359: FUNCTION get_expected_cardinality (my_alert IN ALERT_TYPE

355: -- Note
356: -- This will return the expected cardinality if it is a cardinality miss
357: -- GDS alert.
358: -------------------------------------------------------------------------------
359: FUNCTION get_expected_cardinality (my_alert IN ALERT_TYPE
360: )
361: return BINARY_INTEGER;
362:
363: -------------------------------------------------------------------------------

Line 376: FUNCTION get_current_cardinality (my_alert IN ALERT_TYPE

372: -- Note
373: -- This will return the current cardinality if it is a cardinality miss
374: -- GDS alert.
375: -------------------------------------------------------------------------------
376: FUNCTION get_current_cardinality (my_alert IN ALERT_TYPE
377: )
378: return BINARY_INTEGER;
379:
380: END dbms_gsm_alerts;