It's a vb.net application,
Here the code
Using bulkcopy As New SqlBulkCopy(sqlconnection)
bulkcopy.DestinationTableName = strTable
bulkcopy.BulkCopyTimeout = 0
If dt.Rows.Count > 0 Then
righeImportate = dt.Rows.Count
bulkcopy.WriteToServer(dt)
End If
End Using
The dt (data table) is the same (about 500000 rows). The target table is the same, in the same database, on the same Sql Server.
Always is the same.
The only difference is that I run the application from two different client
Also the client are done from the same image (the client that perform worst has 16gb ram, the client the perform better has 8gb ram.
The same network local network