How to import neo4j dump into current database

I can get a dump of the current database like this:

neo4j-shell -c dump > dump.sql

      

Now how do I import this dump file into another database (using a shell)

+3


source to share


1 answer


neo4j-shell -file dump.sql

      



After executing the file, the shell exits. See http://neo4j.com/docs/2.2.2/re02.html

+4


source







All Articles