SqlBulkCopy 超时已过期
我正在使用 SqlBulkCopy 从 xml 备份恢复表。其中一个表备份大约有 200MB 大,并且有大量记录。
我遇到错误:
Timeout expired.
The timeout period elapsed prior to completion of the operation or the server
is not responding.
I'm using SqlBulkCopy to restore tables from xml backups. One of the table backup is ~200MB large and has a lot of records.
I'm having error:
Timeout expired.
The timeout period elapsed prior to completion of the operation or the server
is not responding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能需要增加超时时间。尝试增加
sqlBulkCopy.BulkCopyTimeout 的值
与默认值 30 秒相比。You probably need to increase the timeout. Try increasing the value of
sqlBulkCopy.BulkCopyTimeout
from the default which is 30 seconds.有两种方法可以修复此错误:
增加超时,默认为 30 秒,0 表示无限。
默认情况下减少 BatchSize,它会尝试在一批中插入所有行
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.batchsize.aspx
http://msdn.microsoft.com/en -us/library/system.data.sqlclient.sqlbulkcopy.bulkcopytimeout.aspx
There are two ways to fix this error:
Increase Timeout by default it is 30 second and 0 means infinite.
Decrease BatchSize by default it try to insert all rows in one batch
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.batchsize.aspx
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.bulkcopytimeout.aspx
更改 SqlCommand 的 CommandTimeout 属性目的。
连接字符串的“连接超时”属性确定 SqlConnection 对象在停止尝试连接到服务器之前运行的时间。
另请更改 SqlBulkCopy.BulkCopyTimeout 属性。
Change the CommandTimeout property of your SqlCommand object.
The Connect Timeout attribute of a connection string determines how long a SqlConnection Object runs before it stops attempting to connect to a server.
Also change the SqlBulkCopy.BulkCopyTimeout Property.