A
Andrew Robinson
I need to insert roughly 10,000 rows from a text log file into SQL. Ideally,
I will use ADO as there is a bit of pre-processing before the inserts. I am
guessing this will eliminate Bulk Copy.
In general, what is the fastest method of inserting rows into SQL?
SqlCommand ("INSERT INTO...." cn) or build a DataTable / DataSet and do an
update with a DataAdaptor?
Should I look at Async in Whidbey?
-Andrew
I will use ADO as there is a bit of pre-processing before the inserts. I am
guessing this will eliminate Bulk Copy.
In general, what is the fastest method of inserting rows into SQL?
SqlCommand ("INSERT INTO...." cn) or build a DataTable / DataSet and do an
update with a DataAdaptor?
Should I look at Async in Whidbey?
-Andrew