At times it is required for an availability of a mechanism to load the data in a csv file to a sql server. If there is no tool available to load such data automatically, then it would be a hectic task for a person to do it record by record in to the sql server database. Here comes the help hand rendered by csvreader.com. The site offers a C# CSV based .net framework called “Datastream” which has the ability to read the csv files and load into sql server database. In addition to csv files, the software also allows to read Excel files (both old and new version of excel files), Fixed width files and even XML files. It has a great data parsing engine which has the in-built bulk insert capability feature which can be used along with sqlbulkcopy in .net framework environment. One can utilize Datastream to perform loading of data from multiple csv filesduring the same loading session, It can parse the excel file without the need of Microsoft office software to be installed in the machine, it can parse a file of large size and load the data without occupying a large amount of computer memory. The framework can be installed and perform well in a 64 bit environment.