|
For a production server sp_configure shows remote query timeout (s) 0 2147483647 600 600 however, sys.servers shows query_timeout of 15 seconds (not the 600 seconds from sp_configure). Why are these 2 settings different? How is sys.servers query_timeout set? Thank you for your help
(comments are locked)
|
|
Great answers. In summary … Use SSMS to set server “remote query timeout”. Use sp_serveroption to override local “remote query timeout” in sys.servers Thank you both.
(comments are locked)
|
|
'remote query timeout' is the timeout for a remote operation on your server. sys.servers lists the local and linked servers that have been configured, and the query_timeout column is the timeout specified for connections made through that linked server. Normally this is set at 0 which means use the remote servers default. You would set this either through SSMS or
(comments are locked)
|
|
Let's see if I'm keeping correctly track of the precedece. For a linked server:
(comments are locked)
|

