Wednesday 4 November 2020

HOW TO INCREASE THE MS SQL REMOTE QUERY TIMEOUT?

 HOW TO INCREASE THE MS SQL REMOTE QUERY TIMEOUT?

 

HOW TO INCREASE THE MS SQL REMOTE QUERY TIMEOUT?

MS SQL Server has an option called Remote Query Timeout to specify the time (in seconds), a remote operation can take before SQL Server times out. Note that, it only applies to an outgoing (not incoming) connection initiated by the Database Engine as a remote query. The default value for this option is 600 seconds, which can be configured either via SQL Server Management Studio or Transact-SQL.



Using SQL Server Management Studio

  1. Connect to MS SQL server via SQL Management Studio.
  2. In Object Explorer, right-click on the server name and then select Properties.

    SQL Server Management Studio

  3. In the new tab, click on Connections node.
  4. In Remote Query Timeout change it to your desired value or specify 0 to set no limit.

    Connections

  5. Click on OK to save the changes.


Using Transact-SQL

  1. Connect to MS SQL server via SQL Management Studio.
  2. From the Standard bar, click on New Query.
  3. Run the below query to set the Remote Query Timeout to 0 seconds ( 0 is unlimited). Similarly, you can replace 0 with your desired value (default is 600 seconds).

    EXEC SP_CONFIGURE 'remote query timeout', 0
    reconfigure
    EXEC sp_configure
  4. Click Execute.

No comments:

Post a Comment

Note: only a member of this blog may post a comment.

Blog Archive