Hey lcsgeek,you can specify which row to start with.BULK INSERT CSVTest FROM 'c:\csvtest.txt' WITH ( FIELDTERMINATOR = ',', FIRSTROW = 2, --this will start on the second row...not your column names. ROWTERMINATOR = '\n' ) GO
I'm not real sure how to get the double quotes out without manipulating the data after you import in the table. Maybe a stored procedure to clear those out. Maybe use the REPLACE function for that after it is imported in the table? [url]http://msdn.microsoft.com/en-us/library/ms186862.aspx[/url]Everyday life brings me back to reality