I need to insert multiple records from ado.net. It should call a SP for updating. I have multiple records as CSV and added them in temporary table in SP. Some Validations needs to be done that. And it get inserted/updated in to main table.
Problem is using Temp table has performance bottle necks.
I have googled it. Other ways of passing multiple records can be done by using XML or table value parameter in sql 2008.
On Performance point of view, which one is better. In my case, 500 concurrent transactions may happen at a time.
Please suggest.
Regards, Mani.M