Timeout expired with SqlBulkCopy

前端 未结 3 1384
我在风中等你
我在风中等你 2020-12-16 10:06

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:

Timeo         


        
3条回答
  •  没有蜡笔的小新
    2020-12-16 10:21

    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.

提交回复
热议问题