How to add the CommandTimeoutInSeconds setting:
1. Go to folder "<
Spotfire installation directory>\Modules\Spotfire DXP Forms_xxx" and open file
Spotfire.Dxp.Main.dll.config in a text editor.
2. Copy and add the line
<section name="Spotfire.Dxp.Data.Adapters.Odbc.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
in the following location:
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
...
<section name="Spotfire.Dxp.Data.Adapters.Odbc.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
3. Copy and add the setting
<Spotfire.Dxp.Data.Adapters.Odbc.Properties.Settings>
<setting name="CommandTimeoutInSeconds" serializeAs="String">
<value>[desired timeout in seconds]</value>
</setting>
</Spotfire.Dxp.Data.Adapters.Odbc.Properties.Settings>
in the following location:
<applicationSettings>
...
<Spotfire.Dxp.Data.Adapters.Odbc.Properties.Settings>
<setting name="CommandTimeoutInSeconds" serializeAs="String">
<value>[desired timeout in seconds]</value>
</setting>
</Spotfire.Dxp.Data.Adapters.Odbc.Properties.Settings>
</applicationSettings>
4. In this setting, replace "[desired timeout in seconds]" with timeout specified in seconds. The timeout is 1800 seconds (30 minutes) by default.
5. Save and close the file.
6. Restart TIBCO Spotfire Analyst.