Hello,
Trying to setup a process to parse and load IIS log files to a database to monitor errors on a Geocortex site.
I have a workspace that returns the file path of the most recent log file and that is passed into a FeatureReader with the CSV reader.
The data is space delimited. The issue is that the field name header has one extra field (X). So when the text file is parsed, the field names are offset one column to the right.
Â
Header: X |1|2|3|4|5
Data: 1|2|3|4|5|
I need to remove X in the Field name header, and shift the header one cell to the left.
Ideally this could be done in the CSV reader, but I don't see how.
Thanks for the help. Much appreciated.
-R
Â