cypher - neo4j LOAD CSV with Tabs -


i trying load csv , create nodes in neo4j 2.1.0 using following:

using periodic commit load csv "file://c:/temp/listings.txt" line fieldterminator '\t' create (p:person { id: line[0] });

the columns separated using 0x9 (tab) characters. created nodes have entire row content in id.

any appreciated.

try fieldterminator '\\t'
that's worked me


Comments

Popular posts from this blog

android - Automated my builds -

how to proxy from https to http with lighttpd -

python - Flask migration error -