I am generating a CSV file that will be read into a database using sqlldr
and was wondering if there are compatible comments that I can put in the file?
# Currently I am using comments of this format
# and I want to add some information about where the file came from
However, sqlldr
reports these as rows not loaded due to data errors
, which could be confusing for any user attempting to debug the import process.
I have taken a look at the sqlldr documentation and it does not mention anything about comments. The answer to this question also outlines that CSV files do not have comments of their own standard, but that the standard is defined by the application reading the file (in this case sqlldr
).
Is there a compatible comment type that can be used with sqlldr
?