Databases

Introduction

Neo4j allows the same server to manage multiple databases. The metadata for these databases, including the associated security model, is maintained in a special database called the system database. All multi-database administrative commands need to be executing against the system database.

Listing databases

There are three different commands for listing databases. Listing all databases, listing a particular database or listing the default database.

All available databases can be seen using the command SHOW DATABASES.

Query
SHOW DATABASES
Table 1. Result
name address role requestedStatus currentStatus error default

"neo4j"

"localhost:7687"

"standalone"

"online"

"online"

""

true

"system"

"localhost:7687"

"standalone"

"online"

"online"

""

false

Rows: 2

Note that the results of this command are filtered according to the ACCESS privileges the user has. However, a user with CREATE/DROP DATABASE or DATABASE MANAGEMENT privileges can see all databases regardless of their ACCESS privileges. If a user has not been granted ACCESS privilege to any databases, the command can still be executed but will only return the system database, which is always visible.

A particular database can be seen using the command SHOW DATABASE name.

Query
SHOW DATABASE system
Table 2. Result
name address role requestedStatus currentStatus error default

"system"

"localhost:7687"

"standalone"

"online"

"online"

""

false

Rows: 1

The default database can be seen using the command SHOW DEFAULT DATABASE.

Query
SHOW DEFAULT DATABASE
Table 3. Result
name address role requestedStatus currentStatus error

"neo4j"

"localhost:7687"

"standalone"

"online"

"online"

""

Rows: 1

Note that for failed databases, the currentStatus and requestedStatus are different. This often implies an error, but does not always. For example, a database may take a while to transition from offline to online due to performing recovery. Or, during normal operation a database’s currentStatus may be transiently different from its requestedStatus due to a necessary automatic process, such as one Neo4j instance copying store files from another. The possible statuses are initial, online, offline, store copying and unknown.

Creating databases

Databases can be created using CREATE DATABASE.

Query
CREATE DATABASE customers

0 rows, System updates: 1

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.

When a database has been created, it will show up in the listing provided by the command SHOW DATABASES.

Query
SHOW DATABASES
Table 4. Result
name address role requestedStatus currentStatus error default

"customers"

"localhost:7687"

"standalone"

"online"

"online"

""

false

"neo4j"

"localhost:7687"

"standalone"

"online"

"online"

""

true

"system"

"localhost:7687"

"standalone"

"online"

"online"

""

false

Rows: 3

This command is optionally idempotent, with the default behavior to throw an exception if the database already exists. Appending IF NOT EXISTS to the command will ensure that no exception is thrown and nothing happens should the database already exist. Adding OR REPLACE to the command will result in any existing database being deleted and a new one created.

Query
CREATE DATABASE customers IF NOT EXISTS
Query
CREATE OR REPLACE DATABASE customers

This is equivalent to running DROP DATABASE customers IF EXISTS followed by CREATE DATABASE customers.

The IF NOT EXISTS and OR REPLACE parts of this command cannot be used together.

Stopping databases

Databases can be stopped using the command STOP DATABASE.

Query
STOP DATABASE customers

0 rows, System updates: 1

The status of the stopped database can be seen using the command SHOW DATABASE name.

Query
SHOW DATABASE customers
Table 5. Result
name address role requestedStatus currentStatus error default

"customers"

"localhost:7687"

"standalone"

"offline"

"offline"

""

false

Rows: 1

Starting databases

Databases can be started using the command START DATABASE.

Query
START DATABASE customers

0 rows, System updates: 1

The status of the started database can be seen using the command SHOW DATABASE name.

Query
SHOW DATABASE customers
Table 6. Result
name address role requestedStatus currentStatus error default

"customers"

"localhost:7687"

"standalone"

"online"

"online"

""

false

Rows: 1

Deleting databases

Databases can be deleted using the command DROP DATABASE.

Query
DROP DATABASE customers

0 rows, System updates: 1

When a database has been deleted, it will no longer show up in the listing provided by the command SHOW DATABASES.

Query
SHOW DATABASES
Table 7. Result
name address role requestedStatus currentStatus error default

"neo4j"

"localhost:7687"

"standalone"

"online"

"online"

""

true

"system"

"localhost:7687"

"standalone"

"online"

"online"

""

false

Rows: 2

This command is optionally idempotent, with the default behavior to throw an exception if the database does not exists. Appending IF EXISTS to the command will ensure that no exception is thrown and nothing happens should the database not exist.

Query
DROP DATABASE customers IF EXISTS