Neo4J Load CSV -> URI is not hierarchical

前端 未结 10 1795
无人共我
无人共我 2021-02-20 10:39

I try to import CSV in a Neo4j Database and I have a problem.

On my desktop computer (windows 7, java 1.8.0_40-b25), the LOAD CSV works great. But on the server (window

10条回答
  •  北海茫月
    2021-02-20 11:29

    I had the same problem. I solved it by putting /// instead of F:/ or F:///.

    So if your source is

    F:/FolderOne/FolderTwo/file.csv
    

    It becomes

    ///FolderOne/FolderTwo/file.csv
    

    Remember that in order to add the file you must put file: in front of the source. So finally

    file:///FolderOne/FolderTwo/file.csv
    

提交回复
热议问题