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
.
SHOW DATABASES
name | address | role | requestedStatus | currentStatus | error | default |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 2 |
Note that the results of this command are filtered according to the |
A particular database can be seen using the command SHOW DATABASE name
.
SHOW DATABASE system
name | address | role | requestedStatus | currentStatus | error | default |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
Rows: 1 |
The default database can be seen using the command SHOW DEFAULT DATABASE
.
SHOW DEFAULT DATABASE
name | address | role | requestedStatus | currentStatus | error |
---|---|---|---|---|---|
|
|
|
|
|
|
Rows: 1 |
Note that for failed databases, the |
Creating databases
Databases can be created using CREATE DATABASE
.
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:
|
When a database has been created, it will show up in the listing provided by the command SHOW DATABASES
.
SHOW DATABASES
name | address | role | requestedStatus | currentStatus | error | default |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
CREATE DATABASE customers IF NOT EXISTS
CREATE OR REPLACE DATABASE customers
This is equivalent to running DROP DATABASE customers IF EXISTS
followed by CREATE DATABASE customers
.
The |
Stopping databases
Databases can be stopped using the command STOP DATABASE
.
STOP DATABASE customers
0 rows, System updates: 1
The status of the stopped database can be seen using the command SHOW DATABASE name
.
SHOW DATABASE customers
name | address | role | requestedStatus | currentStatus | error | default |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
Rows: 1 |
Starting databases
Databases can be started using the command START DATABASE
.
START DATABASE customers
0 rows, System updates: 1
The status of the started database can be seen using the command SHOW DATABASE name
.
SHOW DATABASE customers
name | address | role | requestedStatus | currentStatus | error | default |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
Rows: 1 |
Deleting databases
Databases can be deleted using the command DROP DATABASE
.
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
.
SHOW DATABASES
name | address | role | requestedStatus | currentStatus | error | default |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
DROP DATABASE customers IF EXISTS