In a csv received, the first line is the header with columns, and the last line is a custom trailer record that just notes the number of records, file names etc.
We would like to be able to load this large file into sqlite to eyeball some of the columns since excel struggles with this. Also, tools like UltraEdit can open this file, but it is a pain to check certain values in columns.
Can SQLite skip this last line, or should the last line be trimmed before we load into SQLite. We would prefer not to change this file.
Environment: Windows.