reading data from flat file in asp.net

779 Views Asked by At

i have flat files in some direcotry. each flat file contains around 60,000 rows of data. earlier we were using excel sheets to upload data. but now the challenge is it is taking more time to upload data into DB tables. can any body suggest me which is the best way to upload such a huge data into db tables. can we use SSIS for uploading data. if so, how can we achieve that. or please suggest me the feasible way. (effieciency of uploading data is main criteria here).

thanks, murali

1

There are 1 best solutions below

1
On

Create a WCF service, call a method on it to queue the file request. And the service should take care of reading the file and backing it to DB.