I am performing some test on sql server and I want to get the best insert speed possible. The statement I use is something like this:
INSERT INTO db_Test_d
Have you considered using SqlBulkCopy? You need to build a DataTable and pass it to the WriteToServer routine.
It's FAST!