Tuesday, June 2, 2015

MODIFYING AUTO-SAVE FEATURE INTERVAL TRIGGER TIME IN MICROSOFT DYNAMICS CRM 2013/2015


By default, the Auto-save feature interval trigger time in Microsoft Dynamics CRM 2013 is set to 30 seconds. However, there might be a case where you have to decrease or increase this interval trigger time value to meet a specific requirement. You will then have to modify the “AutoSaveInterval” value in the “DeploymentProperties” table in the “MSCRM_CONFIG” SQL Server database. The value is in second(s) unit.

Retrieving Auto-save feature interval trigger time


SELECT IntColumn FROM DeploymentProperties
WHERE ColumnName = 'AutoSaveInterval'
Modifying Auto-save feature interval trigger time


UPDATE DeploymentProperties
SET IntColumn = 100
WHERE ColumnName = 'AutoSaveInterval'

No comments:

Post a Comment

Get files of last hour in Azure Data Factory

  Case I have a Data Factory pipeline that should run each hour and collect all new files added to the data lake since the last run. What is...