You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, can you please add feature to be able to set exceptions separately for full, diff, log backups?
Use case: I would like to exclude msdb from DIFF backups, but if I put msdb in exclude list I will stop monitoring FULL backups for msdb at the same time.
Additionally, is it possible to add wildcards in excluded DBs list?
Thanks
The text was updated successfully, but these errors were encountered:
Willdcards are already supported - anything that works with LIKE.
As a workaround for this request, you could configure the threshold at the database level. This might be a bit painful to do in the UI, but you could use a script like the one below.
INSERT INTO dbo.BackupThresholds(InstanceID,DatabaseID,FullBackupWarningThreshold,FullBackupCriticalThreshold,ConsiderPartialBackups,ConsiderFGBackups,ExcludedDatabases)
SELECT InstanceID,DatabaseID,10080,14400,0,0,''
FROM dbo.Databases D
WHERE name = 'msdb'
AND IsActive=1
AND NOT EXISTS(SELECT 1
FROM dbo.BackupThresholds BT
WHERE BT.InstanceID= D.InstanceID
AND BT.DatabaseID = D.DatabaseID
)
Hi, can you please add feature to be able to set exceptions separately for full, diff, log backups?
Use case: I would like to exclude msdb from DIFF backups, but if I put msdb in exclude list I will stop monitoring FULL backups for msdb at the same time.
Additionally, is it possible to add wildcards in excluded DBs list?
Thanks
The text was updated successfully, but these errors were encountered: