J
Jon
Hi,
I plan to import some data from an old DOS-based programme. The data file format that this programme
produced appears to be proprietary, but I've managed to reverse engineer the format and have put
together a C# programme to do this.
The data will be imported into a database table.
Do you have any general tips on how store the data to a database (SQL Server 2005 Express) quickly?
The amount of data could be up to 100Mbytes.
Should I put it into a DataTable first then save this to the database, or should I send it directly
to the database (eg using SQL), or is there another way?
The data will overwrite anything in the database, so no merging is required.
Thanks...
I plan to import some data from an old DOS-based programme. The data file format that this programme
produced appears to be proprietary, but I've managed to reverse engineer the format and have put
together a C# programme to do this.
The data will be imported into a database table.
Do you have any general tips on how store the data to a database (SQL Server 2005 Express) quickly?
The amount of data could be up to 100Mbytes.
Should I put it into a DataTable first then save this to the database, or should I send it directly
to the database (eg using SQL), or is there another way?
The data will overwrite anything in the database, so no merging is required.
Thanks...