我在申请中遇到了一个重大问题。通过oledb.jet 12.0提供程序读取一个包含超过9万条记录的大型excel文件,并在一段时间后通过我将一个数据集中的数据集填入我的异常消息中。
我努力找到一些解决办法,但直到现在都没有运气。
如果有人对这个问题有所了解,请在这个问题上帮助我。
代码:
MyConn = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & FileSource & ";Extended Properties=""Excel 12.0;IMEX=1""")
MyConn.Open()
'get the table schema information to retrive sheet name
Dim schemaTable As DataTable = MyConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, New Object() {Nothing, Nothing, Nothing, "TABLE"})
For Each dtrow As DataRow In schemaTable.Rows
Dim iUploadStatus As Integer = 0
sheetName = String.Empty
sheet = dtrow("TABLE_NAME").ToString()
'to skip the duplicate sheet being fetched in the schema table.
If sheet.Contains("_xlnm#_FilterDatabase") Or sheet.Contains("_FilterDatabase") Then
Continue For
End If
MyCommand = New OleDbDataAdapter _
("select * from [" + sheet + "] ", MyConn)
MyCommand.TableMappings.Add("Table", "TestTable")
DtSet = New DataSet
MyCommand.Fill(DtSet)
Using destinationConnection As New SqlConnection(Conn)
' open the connection
destinationConnection.Open()
Using bulkCopy As New SqlBulkCopy(Conn)
' column mappings
bulkCopy.ColumnMappings.Add(P1, ColProdNum)
bulkCopy.ColumnMappings.Add(P2, ColProdDesc)
bulkCopy.ColumnMappings.Add(P3, ColListPrice)
bulkCopy.ColumnMappings.Add(P4, ColNetPrice)
bulkCopy.BatchSize = 2000
bulkCopy.NotifyAfter = 2000
bulkCopy.DestinationTableName = "tabDestination"
bulkCopy.WriteToServer(DtSet.Tables(0))
End Using
End Using
答案 0 :(得分:0)
我所做的更正如下:
在每个阅读过程线程中,我使用SQLBulkCopy通过数据到目标表。
每次上传循环过程(100000条记录)后,清除数据表对象中的行。