Conflict Alerts

  • I am very new to replication and we occasionally get some conflicts on a specific article that are easy to resolve but cause reporting issues if we do not know about them. Is there any way to configure an email alert when there are conflicts on a specific article?

  • Script for alert creation (merge replication):

    USE [msdb]

    GO

    EXEC msdb.dbo.sp_add_alert @name=N'Conflict',

    @message_id=0,

    @severity=0,

    @enabled=1,

    @delay_between_responses=0,

    @include_event_description_in=0,

    @category_name=N'[Uncategorized]',

    @performance_condition=N'SQLServer:Replication Merge|Conflicts/sec|Merge Replication Agent Job you wish to monitor|>|0',

    @job_id=NewID()

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply