InterviewSolution
Saved Bookmarks
| 1. |
List some neo4j commands? |
Answer»
MATCH ( <node-name >:<label-name> )
16. How to create a new database in neo4j? To create a new database in Neo4j WITHOUT removing your existing one, users can directly edit the neo4j.conf file in their conf directory of their $NEO4J_HOME. Search dbms.active_database= and REPLACE it with your DESIRED name and restart the PROGRAM again. A new database will be created now. |
|