首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

The solution of SSIS Error: Timeout expired

2012-08-22 
The solution of SSIS Error: Timeout expired.SSIS error message is:Error: Timeout expired.The timeou

The solution of SSIS Error: Timeout expired.

SSIS error message is:

Error: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

?

Solution:

?

The solution is simple, change the?CommandTimeout property of yourSqlCommand object.

?The Connect Timeout attribute of a connection string determines how long aSqlConnection Object runs before it stops attempting to connect to a server.

?

For example:

Set OLE DB Destination.CommandTimeout = 0;

&

Set ADO.NET Connection.Connect Timeout = 0;

?

When 0 is for no limit.

热点排行