Dear All,
We recently encountered an issue with dashboard chart, when we view the dashboard the chart shows error like below
So to fix this issue we manually increased the max limit of 'AggregateQueryRecordLimit' to 500000 but it is causing the performance issue, I would appreciate if anyone could let me know the work around.
USE MSCRM_CONFIG
GO
UPDATE DeploymentProperties
SET IntColumn = 500000
WHERE ColumnName = 'AggregateQueryRecordLimit'
SELECT ColumnName
, IntColumn
FROM DeploymentProperties
WHERE ColumnName = 'AggregateQueryRecordLimit'
*This post is locked for comments