Cypher Neo4j Couldn't load the external resource

前端 未结 15 1763
谎友^
谎友^ 2021-02-07 05:09

In a Windows environment, I\'m trying to load a .csv file with statement:

LOAD CSV WITH HEADERS FROM \"file:///E:/Neo4j/customers.csv\" AS row

15条回答
  •  广开言路
    2021-02-07 05:48

    1. Set the Property "dbms.directories.import=import"
    2. Create folder 'import' explicitly at "/Users/User/Documents/Neo4j/default.graphdb/" because pre-defined directory did not exist entirely
    3. place the csv data set here in the import folder
    4. then run the code like - LOAD CSV FROM "file:///C:/customers.csv" AS row

    In addition after you run the line, you can analyze what is going wrong in the code section to get a better understanding

提交回复
热议问题