Here, I Explained about how To check status of alerts on HANA database using the following sql, the status should be IDLE , if the status is DISABLED the alerts won't run the next scheduled time
select * from _sys_statistics.STATISTICS_SCHEDULE;
if status DISABLED then To enabled the status of alerts back to Idle from DISABLED use as below
update _sys_statistics.statistics_schedule set status='Idle' where status='Disabled';
how To check the count of alerts generated and accumulated for email processing check :
select count(*) from "_SYS_STATISTICS"."STATISTICS_EMAIL_PROCESSING";
Case Study - Suppose , we had 500000 emails accumulated which crashed the index server and thus had to truncate the email processing table as :
truncate table "_SYS_STATISTICS"."STATISTICS_EMAIL_PROCESSING";
how To check the email recepients on HANA database for alerts
select * from "_SYS_STATISTICS"."STATISTICS_EMAILRECIPIENTS"
how To check the threshold values for each alerts on HANA database
Select * from "_SYS_STATISTICS"."STATISTICS_ALERT_THRESHOLDS"
how To check the SMTP configuration for HANA database alerts
select * from _SYS_STATISTICS.STATISTICS_PROPERTIES
select * from _sys_statistics.STATISTICS_SCHEDULE;
if status DISABLED then To enabled the status of alerts back to Idle from DISABLED use as below
update _sys_statistics.statistics_schedule set status='Idle' where status='Disabled';
how To check the count of alerts generated and accumulated for email processing check :
select count(*) from "_SYS_STATISTICS"."STATISTICS_EMAIL_PROCESSING";
Case Study - Suppose , we had 500000 emails accumulated which crashed the index server and thus had to truncate the email processing table as :
truncate table "_SYS_STATISTICS"."STATISTICS_EMAIL_PROCESSING";
how To check the email recepients on HANA database for alerts
select * from "_SYS_STATISTICS"."STATISTICS_EMAILRECIPIENTS"
how To check the threshold values for each alerts on HANA database
Select * from "_SYS_STATISTICS"."STATISTICS_ALERT_THRESHOLDS"
how To check the SMTP configuration for HANA database alerts
select * from _SYS_STATISTICS.STATISTICS_PROPERTIES
No comments:
Post a Comment