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
.csvfile will be uploaded to the server and thenSqlBulkCopyoperation will be started.
Option B:
- Read
.csvfile from user's pc and then send that data to the server.
I am new to ASP.Net.
Thank you.