How can we help you today? How can we help you today?
Chris Spencer
Hi Sorry for the delay also. That was just the information I needed to get some progress on this. I think that I've managed to reproduce the issue you're getting. What happens on my system is that the Check Database Integrity Task is initially creating a low level alert with a SQL fragment as follows: DECLARE @BlobEater VARBINARY(8000) SELECT @BlobEater = CheckIndex (ROWSET_COLUMN_FACT_BLOB) FROM { IRowset 0x70C6840502000000 } GROUP BY ROWSET_COLUMN_FACT_KEY >> WITH ORDER BY ROWSET_COLUMN_FACT_KEY, ROWSET_COLUMN_SLOT_ID, ROWSET_COLUMN_COMBINED_ID, ROWSET_COLUMN_FACT_BLOB OPTION (ORDER GROUP) The alert is raised initially as the above SQL wouldn't be filtered out with the BACKUP|CHECKDB regEx. The alert is subsequently escalated to a medium or high level alert and the SQL process fragment is updated with new information i.e. -- network protocol: LPC set quoted_identifier on set arithabort off set numeric_roundabort off set ansi_warnings on set ansi_padding on set ansi_nulls on set concat_null_yields_null on set cursor_close_on_commit off set implicit_transactions off set language us_english set dateformat mdy set datefirst 7 set transaction isolation level read committed USE [RedGateMonitor21] DBCC CHECKDB(N'RedGateMonitor21') WITH NO_INFOMSGS If the alert was raised initially with this SQL fragment then it would I'm sure be correctly filtered out. A workaround could be to disable the low and medium thresholds in order to prevent the alert ever escalating (or downgrading). This wouldn't prevent the alert appearing, it would just avoid the confusion. So the issue seems to be that we re-fetch the SQL process fragment on alert escalation. I'm not sure whether this is a good thing or not, so would like your opinion on this if possible. Should we be updating the information on alert escalation? Regards Chris / comments
Hi Sorry for the delay also. That was just the information I needed to get some progress on this. I think that I've managed to reproduce the issue you're getting. What happens on my system is that ...
0 votes