Neo4j import data with queries -


i searched in forum , googled can't find solution special problem. have create new graph database (neo4j, cypher) , have create many data. like:

create (:mitglied { userid:1, vorname:"jennifer", nachname:"koch", geburtstag:"1977-12-11" }), (:mitglied { userid:2, vorname:"lina", nachname:"hansen", geburtstag:"1984-04-08" }),  (:mitglied { userid:3, vorname:"paul", nachname:"brandt", geburtstag:"1956-08-13" }),  (:mitglied { userid:4, vorname:"sophie", nachname:"peters", geburtstag:"1972-12-24" }),  (:mitglied { userid:5, vorname:"manuel", nachname:"graf", geburtstag:"1996-02-06" }), ... 

so tried execute shell batch (neo4jshell.bat) c#, copy & paste data webadmin. without success :( code (start new process , used inputstream inserting every line) stopped after short time, nothing happened (either data nor program). webadmin needs loooooong time 500 creates. have 2,100,000 creates...

so can of guys me , can do? haven't got idea @ moment :( study, importing relational database not solution - data must created queries.. because of mass of data should happend automatically ;)

thank much!

i see in comment you're using c#, versed in java? if so, can use batch inserter, meant type of large, 1 time ingestion.

if not, using list of maps faster?


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -