Hi,
nice mug :-)
there are quite a few possiblities in CSV depending on the contents of the file:
- primary key clashes leading to data not landing in Ingest. If there is no primary key set up, this won't be the issue
- strings containing control characters (i.e. line breaks). If you have text fields that are not encapsulated in quote characters, the parser may see a /r/n etc. as the end of a record and therefore mess up the load with respect to record boundaries. This can also cause certain records to be seen as incomplete and not loaded, depending on your settings
- if your data is comma separated and you have decimal numbers, you may need to explicitly set culture settings to avoid the decimal separator to be seen as a field delimiter or to have your decimals be mis-interpreted
In the worst case you can cut your CSV in half and try loading it, if you keep doing that you should find the records leading to issues.
Your first statement would seem to indicate there is some kind of key clash going on, your second statement seems to indicate there is some kind duplicate item (source name, table name, field name) that is not expected.