1

我在 CRM 2011 中遇到了许多类似下面的错误。我知道有一种方法可以覆盖默认值 1000。但是如何做到呢?

工作流程中的错误:ExecuteMultiple 请求批处理大小超过了允许的最大批处理大小!

4

2 回答 2

3

您可以通过 PoweShell 更改设置,使用UpdateAdvancedSettingsRequest示例请参阅MSDN

有关设置的更多详细信息,请参见此处此处

于 2013-08-16T03:35:28.493 回答
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

于 2016-07-18T16:03:35.580 回答