tags:

views:

150

answers:

2

I am making an application that is able to display log files and search throught them, in C#. I need data provider that can insert 300,000 records really fast. Does anybody have any sugestions? I am currently using Microsoft Compact server 3.5 and that is going really slow. I tryed sqlite but it performed slow because I could not do bulk insertions.

+6  A: 

I don't know if it is available in the Compact Server, but if you want fast upload into the database, performing a BULK INSERT is usually the way I go.

Colin Mackay
A: 

I don't know if you have tried SQL Server Express 2008 and the BULK INSERT that Colin Mackay mentioned. But that is definitely the way to go for large transactions.

Nick Berardi