I was wondering if there was a library or a trick out there that will allow me to give it a .csv file and it will validate the .csv will load into the database without actually loading any data. I have .csv with thousands of lines of information to load, and it takes about 2 hour. I want a quicker or more efficient method.
I am using MSFT SQL Server 2008.
name of table = table
Format of File:
name = table.csv
column1, column2, column3
1,2,3
I was thinking if there was a column4 that was added and the column states that it does NOT allow nulls, the scenario above would fail because it can't create record with 1,2,3 and not define column4 because it would then be null. Can this be done? Is there a freeware library out there to do this already?