FIX:OLE DB provider for linked server returned message “Query timeout expired”.

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;
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s