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