I'm inserting a very large table into a remote database so I need to increase the connection timeout. I've changed it to high values but after testing it looks like it times out after 60 seconds. So there must be a cap on timeouts. Where can I increase the cap?EXEC sp_serveroption @server = 'ServerAliasName', @optname = 'connect timeout', @optvalue = '120';
Another question how does the query timeout differ from the connection timeoutEXEC sp_serveroption @server = 'ServerAliasName', @optname = 'query timeout', @optvalue = '120' ;