I need to insert data from data file into a SQL Server table. The datafile may contains thousands of rows but there is a possibility that some lines in the file are wrong (e.g BIRTH_DATE column value is in wrong format or string cannot be converted to int). I may use bulk insert feature but as some rows in the file are not valid no rows will be inserted because of few invalid ones. I would like to ignore wrong lines and ideally get line number of each invalid row. I would like to do with the highest performance. Any ideas?
Thanks in advance
-Petro