我尝试将CSV文件导入Neo4j(Community Edition V 2.3.3)。错误是Neo.DatabaseError.Statement.ExecutionFailure 它显示如下:
At O:\Sample1.csv:132851 - 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: 'MQP Coverage EPG"'
答案 0 :(得分:0)
您的输入文件中包含一个带有未转义引号的字符串。找到并解决这个问题,你就会好起来。
答案 1 :(得分:0)
您的CSV数据看起来有另一个引号字符,而不是默认的"
。你似乎有'
,这是正确的吗?如果是,则将参数--quote '
添加到导入工具命令。