Use below query to increase default time out or disable time out time.
USE ps; GO EXEC sp_configure 'remote query timeout', 0 ; GO RECONFIGURE ; GO
The remote query timeout option specifies how long, in seconds, a remote operation can take before SQL Server times out. The default value for this option is 600, which allows a 10-minute wait. This value applies to an outgoing connection initiated by the Database Engine as a remote query. This value has no effect on queries received by the Database Engine. To disable the time-out, set the value to 0. A query will wait until it completes.
For more information, see Server Configuration Options (SQL Server).
No comments:
Post a Comment