not a support questionTo disable Threshold for tablespace (Percent type), use following statement
exec DBMS_SERVER_ALERT.SET_THRESHOLD( - metrics_id => DBMS_SERVER_ALERT.TABLESPACE_PCT_FULL, - warning_operator => DBMS_SERVER_ALERT.OPERATOR_DO_NOT_CHECK,- warning_value => '0', critical_operator => DBMS_SERVER_ALERT.OPERATOR_DO_NOT_CHECK,- critical_value => '0', observation_period => 1,- consecutive_occurrences => 1, instance_name => NULL, - object_type => DBMS_SERVER_ALERT.OBJECT_TYPE_TABLESPACE,- object_name => 'USERS');
Replace tablespace USER with the tablespace you want to exclude from monitoring
If you have also enabled tablespace alerts based on Bytes left, then use following
exec DBMS_SERVER_ALERT.SET_THRESHOLD( - metrics_id => DBMS_SERVER_ALERT.TABLESPACE_BYT_FREE, - warning_operator => DBMS_SERVER_ALERT.OPERATOR_DO_NOT_CHECK, - warning_value => '0', - critical_operator => DBMS_SERVER_ALERT.OPERATOR_DO_NOT_CHECK, - critical_value => '0', observation_period => 1, - consecutive_occurrences => 1, - instance_name => NULL, - object_type => DBMS_SERVER_ALERT.OBJECT_TYPE_TABLESPACE, - object_name => 'USERS');
You must log in to post.