Hello,
I have a requirement while loading data into staging from a source file. If there are 1000 lines of data in the file, out of which 50 lines are incorrect information, what can I do in the code such that the load shows which 50 lines (line numbers) have incorrect info? Currently it just loops through the file and inserts all the lines into staging, regardless of the validity of the data and fails when loading into target. I am hoping to catch it in the source to stage load itself.
Thanks