By default SAC remote query timeout (s) it is set 600 secs(10min), we can disable this by setting up with zero.
USE master; GO EXEC sp_configure 'show advanced option', '1'; RECONFIGURE; EXEC sp_configure; USE master; GO EXEC sp_configure 'remote query timeout (s)', '0'; RECONFIGURE WITH OVERRIDE;