I'm in the online training "Applied graph data science for web applications".
Download of the dump-file "yelp-40.dump" was successful. Import in the new project (Yelp) was successful. When I click the 3 dots of the file-area, there is no menuepoint to create a new database from the dump-file.
What's going wrong?
These are the menuepoints I get:
Hi thank you for your post, I managed to run until step 8, but when executing the command
CREATE DATABASE neo4j-p2p-data_v43, it shows the following error.
ImageThe data is from Exploring Fraud Detection With Neo4j
Thank you
Database names must adhere to these naming conventions per the documentation:
Database names are subject to the standard Cypher restrictions on valid identifiers. The following naming rules apply:
-
Database name length must be between 3 and 63 characters.
-
The first character must be an ASCII alphabetic character.
-
Subsequent characters can be ASCII alphabetic (
mydatabase
), numeric characters (mydatabase2
), dots (main.db
), and dashes (enclosed within backticks, e.g.,CREATE DATABASE `main-db`
). -
Names cannot end with dots or dashes.
-
Names that begin with an underscore or with the prefix
system
are reserved for internal use.