无法在neo4j(linux)中从本地磁盘加载csv文件头

时间:2015-02-05 18:00:42

标签: linux csv neo4j local-storage

我刚开始使用neo4j和此查询来导入数据集

load csv from "file:/home/goel/rec/data/item.csv" as line 
create (:Movie {id: toInt(line[0]), name: line[1], release_date: line[2]} )

给出错误

Couldn't load the external resource at: file:/home/goel/rec/data/item.csv

缺少什么?

2 个答案:

答案 0 :(得分:1)

您需要使用双引号关闭文件路径。您打开双引号并尝试以单引号关闭。它应该是:

load csv from "file:/home/goel/rec/data/item.csv" as line 

答案 1 :(得分:0)

编辑neo4j conf文件(/etc/neo4j/neo4j.conf)

更改以下行

<强> dbms.directories.import =进口

<强> dbms.directories.import = /家庭/ suyati /下载/

从下载中加载文件。

在neo4j浏览器中:

使用来自&#34; file:///1.csv"的标头加载csv;如行

(你的档案应该像/home/suyati/Downloads/1.csv那样)

它的工作正常。