问题
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