zoukankan      html  css  js  c++  java
  • [NS]运行行两年了,碰到一个没遇见的问题!





    <NotificationServicesEvent>
        
    <Description>
            此量程中的通知数大于为通知指定的中止值。
        
    </Description>
        
    <Context>
    <EventParameters>
        
    <ApplicationName>ATiP</ApplicationName>
        
    <QuantumId>682363</QuantumId>
        
    <RuleFiringId>2086</RuleFiringId>
        
    <RuleName>MessageNCER</RuleName>
        
    <NotificationThrottle>1000</NotificationThrottle>
        
    <EventClassId>2</EventClassId>
        
    <SubscriptionClassId>1</SubscriptionClassId>
        
    <RuleId>2</RuleId>
        
    <RuleAction>select dbo.MessageNCNotify(s.SubscriberId,s.DeviceName,s.SubscriberLocale,e.Symbol,e.ActionID,e.Content,e.Creator,e.Source)
                        FROM MessageSC s , MessageEC e
                        WHERE s.Symbol=e.Symbol
    </RuleAction>
        
    <StoredProcedureName>NSFire2</StoredProcedureName>
    </EventParameters>

    <SqlServerError>
        Source: .Net SqlClient Data Provider 
        Number: 64024 
        State: 0 
        Class: 19 
        Server:  
        Message: Notification Services error 64024
    Error Parameters:
    Row # = 1001
    XP = xp_NSEndNotifications
     
        Procedure:  
        Line Number: 0 
    </SqlServerError>

        
    </Context>
        
    <Description>
            Notification Services error 64024
    Error Parameters:
    Row # = 1001
    XP = xp_NSEndNotifications

        
    </Description>
        
    <Instance>MessageSubscribe</Instance>
        
    <ApplicationName>ATiP</ApplicationName>
        
    <Component>生成器</Component>
        
    <Thread>684</Thread>
    </NotificationServicesEvent>


    原来,是自己的ADF定义中少定义了一些东西。
    [MSDN] http://msdn2.microsoft.com/en-us/library/ms145829.aspx


    主要是因为现在的业务需求量上来了,消息定义的人数较多,所以默认的1000已经不够用了。
        <ApplicationExecutionSettings>
            
    <NotificationThrottle>3500</NotificationThrottle>
        
    </ApplicationExecutionSettings>


    执行update

    更新通知中止值
    InstanceName
    : MessageSubscribe
    ApplicationName
    : ATiP
    NotificationThrottle
    : 1000 -> 3500

    问题解决。
  • 相关阅读:
    php原生PHPExcel插件导表(附表格合并,加粗居中及加边框换行操作)
    VMware虚拟机基于contos 7 搭建lnmp环境全过程
    菜鸟学git的基本命令及常见错误
    为什么要写blog????
    JavaScript高级程序设计--函数小记
    jsapi微信支付
    Javascript模式小记(一)
    图片的增删查
    图形的滚动及颜色区域的拉移
    网页中的宽与高
  • 原文地址:https://www.cnblogs.com/xuzhong/p/397070.html
Copyright © 2011-2022 走看看