Can you access that csv URL from your computer in general?
Could you also check your logs (message.log in your database directory and 
server logs somewhere under Application Data I think)

It worked fine for me (on Mac though).

CYPHERLOAD CSV WITH HEADERS FROM 
"http://docs.neo4j.org/chunked/2.1.2/csv/import/persons.csv"; AS csvLine CREATE 
(p:Person { id: toInt(csvLine.id), name: csvLine.name })
Added 5 labels, created 5 nodes, set 10 properties, returned 0 rows in 1024 ms

Am 16.07.2014 um 23:17 schrieb [email protected]:

> Hi there,
> 
> I've recently downloaded the neo4j 2.1.2 version (neo4j community edition) 
> for windows 64bit. I'm trying to import a .csv file as mentioned in the 
> tutorial:
> 
> http://neo4j.com/docs/2.1.2/cypherdoc-importing-csv-files-with-cypher/
> 
> I copied the following into the neo4j browser console:
> 
> LOAD CSV WITH HEADERS FROM 
> "http://docs.neo4j.org/chunked/2.1.2/csv/import/persons.csv"; AS csvLine
> CREATE (p:Person { id: toInt(csvLine.id), name: csvLine.name })
>  
> 
> The following error occurs: 
> Neo.TransientError.Statement.ExternalResourceFailure
> 
> The exact same command works on http://console.neo4j.org/. Where is the 
> problem? 
> 
> 
> 
> Thanks for your time, I appreciate it very much!
> 
>  
> 
> Tobias
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Neo4j" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to