Cypher Neo4j Couldn't load the external resource

前端 未结 15 1721
谎友^
谎友^ 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:35

    It appears to be a security configuration. Here's the original answer I found: https://stackoverflow.com/a/37444571/327004

    You can add the following setting in conf/neo4j.conf in order to bypass this :

    dbms.security.allow_csv_import_from_file_urls=true

    Or change the import directory dbms.directories.import=import

提交回复
热议问题