Hello All,
I am using desktop version to access browser based neo-4j instance.
while i am trying to load data to database using "LOAD CSV", there was an error on one of the rows with column value as "l cells, eosinophils and macrophages in C57BL/6 mice, TCR-δ−"
I am getting below error
@ position 244043317 - 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: 'l cells, eosinophils and macrophages in C57BL/6 mice, TCR-δ−",2,97,20050008627-3316T
1503204,20050008627,CELLTYP,CL0000235,macrophage,out3289.xml,18395,17142,macrophages,"ll'
I have used cypher query:
:auto USING PERIODIC COMMIT 100000
LOAD CSV WITH HEADERS FROM 'file:///hits_termite.csv' as line
create (d:Hit {id:line.id,hitTerm:line.hitTerm,
loc:line.loc,
frag:line.frag,
hitID:line.hitID,
docID:line.docID,
entityType:line.entityType,
patent_no:line.doc_number,
sentenceNbr:line.sentenceNbr,
loc_custom:line.loc_custom,
name:line.name,
nonambigsyns:line.nonambigsyns
})
I am unable to understand what the issue is and how to over come the same.
could you please help.