Reputation: 67
I am using the silent option when using U-sql extractors. Is there a way to retreive and monitor the ignored lines? Regards
Upvotes: 0
Views: 29
Reputation: 6684
Unfortunately you cannot get the ignored lines. If you want to capture them, you would have to write a custom extractor that returns the ignored lines using one of the two approaches:
DiagnosticStream
object to output it into a diagnostic file. Note that you will have to turn diagnostic on when running the script to get the diagnostic result.byte[]
that will capture your ignored line and set all other column values to null
.Upvotes: 1