I want to let my users to upload 3000-4000 rows of data into SQL Server 2008. I would like to use SqlBulkCopy
. What is the best policy to do it?
Option A:
- First the
.csv
file will be uploaded to the server and thenSqlBulkCopy
operation will be started.
Option B:
- Read
.csv
file from user's pc and then send that data to the server.
I am new to ASP.Net.
Thank you.