I am am trying to load a SQL table from a flat file. The flat i am talking about is a comma separated file. This has all the data required to populate a table will each column separated by a comma ‘,’. I need some way by which i can load this content into the table faster.
Share
If you are using SQL Server, use
BULK INSERTIf you are using Oracle, see my answer here