I'm using AuraDB free tier.
Trying to import the following csv file with Cypher:
messagetime,correlatioId,messageIntent,messageType,originatingEndpoint,processingEndpoint,timestamp
a,b,c,d,e,f,g
Cypher command:
LOAD CSV WITH HEADERS FROM 'https://www.dropbox.com/s/i5enrzq1imhknab/sendCommandsMini.csv?dl=0' AS relRecords FIELDTERMINATOR ','
RETURN linenumber() AS number, relRecords
Result:
At Dropbox - sendCommandsMini.csv - Simplify your life @ position 8022 - there's a field starting with a quote and whereas it ends that quote there seems to be characters in that field after that ending quote. That isn't supported. This is what I read: 'number"!'
Tried hosting with github and drive, same problem
At sendCommandsMini.csv - Google Drive @ position 18698 - there's a field starting with a quote and whereas it ends that quote there seems to be characters in that field after that ending quote. That isn't supported. This is what I read: 'error")'
Please help,