I have written a C# console program that reads a tab delimited file and does
bcp tblName + " in " + outputfilename + " -c -T -S servername\instancename
-U readonly -P readonly -F2";
The first column is EmpID
which is an int
and second column is EMPName
which is Varchar2(100)
, EMPLOYER VARCHAR(200)
.
The outputfilename
sometimes has errors, while data entry people forget to enter empID
in the 1st column or sometimes while entering Employee Name they go to next line.
EMPID EMPNAME EMPLOYER
100 Ann Taylor A Corporation
Brian Tao B Corporation
200 Cindy
Smith C Corporation
400 Daryl John "D Corporation
1st row is correct.
2nd row since there is no EMPID
, I want to get the row number and log it as error.
Row #3, although Smith is the last name for Cindy there is no way of knowing and so only 200 CIndy gets saved, but log should report error since Smith is not preceded by a number
Row #4, missing a double quote, report error in log file.
Can this be done?
Thanks MR
You can try pre-process input file in your C# application. Read it line by line, try to parse, detect all errors, report them and output result to another file which you then pass to
bcp
.