Configure the remote login timeout Server Configuration Option

This topic describes how to configure the remote login timeout server configuration option in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL. The remote login timeout option specifies the number of seconds to wait before returning from a failed attempt to log in to a remote server. For example, if you are trying to log in to a remote server and that server is down, remote login timeout helps make sure that you do not have to wait indefinitely before your computer stops trying to log in. The default value for this option is 10 seconds. A value of 0 allows for an infinite wait.

Note

The default value for this option is 20 seconds in SQL Server 2008.

In This Topic

  • Before you begin:

    Limitations and Restrictions

    Security

  • To configure the remote login timeout option, using:

    SQL Server Management Studio

    Transact-SQL

  • Follow Up:  After you configure the remote login timeout option

Before You Begin

Limitations and Restrictions

  • The remote login timeout option affects connections to OLE DB providers made for heterogeneous queries.

Security

Permissions

Execute permissions on sp_configure with no parameters or with only the first parameter are granted to all users by default. To execute sp_configure with both parameters to change a configuration option or to run the RECONFIGURE statement, a user must be granted the ALTER SETTINGS server-level permission. The ALTER SETTINGS permission is implicitly held by the sysadmin and serveradmin fixed server roles.

Arrow icon used with Back to Top link [Top]

Using SQL Server Management Studio

To configure the remote login timeout option

  1. In Object Explorer, right-click a server and select Properties.

  2. Click the Advanced node.

  3. Under Network, select a value for the Remote Login Timeout box.

    Use the remote login timeout option to specify the number of seconds to wait before returning from a failed remote login attempt.

Arrow icon used with Back to Top link [Top]

Using Transact-SQL

To configure the remote login timeout option

  1. Connect to the Database Engine.

  2. From the Standard bar, click New Query.

  3. Copy and paste the following example into the query window and click Execute. This example shows how to use sp_configure to set the value of the remote login timeout option to 35 seconds.

USE AdventureWorks2012 ;
GO
EXEC sp_configure 'remote login timeout', 35 ;
GO
RECONFIGURE ;
GO

For more information, see Server Configuration Options.

Arrow icon used with Back to Top link [Top]

Follow Up: After you configure the remote login timeout option

The setting takes effect immediately without restarting the server.

Arrow icon used with Back to Top link [Top]

See Also

Reference

RECONFIGURE (Transact-SQL)

sp_configure (Transact-SQL)

Concepts

Server Configuration Options