The station status table reports the number of skipped records, but I'm struggling to find an efficient way to actually locate the skipped records in my data table. Do you have any recommendations?
Thanks,
Mike
One option is to monitor the SkippedRecord status table value (it is a counter), and if it changes from one scan to the next, then write a record to a data table.
Status table values can be assigned to a variable (or used as they are in an instruction) using the data table access syntax (see the help file ); e.g.,
SkippedRecs(1) = Status.skippedRecord(1)
variable = tablename.fieldname
There may be easier ways, but this is one I can think of right now (the way above doesn't do you any good with existing data).
Regards,
Dana W.