How to change the default ExecuteMultipleRequest batch size limit in CRM 2011 on premise?

柔情痞子 提交于 2019-12-06 16:00:20

问题


I encountered many errors like below in CRM 2011. I know there's a way to override the default value 1000. But how to?

Error in workflow: ExecuteMultiple Request batch size exceeds the maximum batch size allowed!


回答1:


You can change the setting via PoweShell using UpdateAdvancedSettingsRequest - examples see MSDN.

Further details about settings can be found here and here.




回答2:


For CRM On Premise, you could execute the following SQL Command directly at the MSCRM_CONFIG database (at your own risk):

update deploymentproperties set IntColumn = *"your value here"* where columnname = 'ExecuteMultipleMaxBatchSize'

It takes a while for the changes to be applied. Alternatively, you can restart the Microsoft Dynamics CRM Services



来源:https://stackoverflow.com/questions/18265343/how-to-change-the-default-executemultiplerequest-batch-size-limit-in-crm-2011-on

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!