












Error message when you execute a linked server query in SQL Server: "Timeout Expired"
http://support.microsoft.com/kb/314530
有一个任务需要取 link server 中的table , 执行过程出现了
Execution terminated by the provider because a resource limit was reached 类似的错误。
确定是timeout 问题。
To work around this, you can reconfigure the timeout setting.
Based on which type of error you encounter, you can reconfigure the timeout setting as follows:
sp_configure 'remote login timeout', 30
go
reconfigure with override
go
sp_configure 'remote query timeout', 0
go
reconfigure with override
go
已经ok。
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。