Database management
This section explains how to use Cypher to manage databases in Neo4j DBMS: creating, modifying, deleting, starting, and stopping individual databases within a single server.
Neo4j supports the management of multiple databases within the same DBMS.
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 must be run against the system
database.
These administrative commands are automatically routed to the system
database when connected to the DBMS over Bolt.
The syntax of the database management commands is as follows:
The syntax descriptions use the style from access control. |
Command | Syntax |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Listing databases
There are four different commands for listing databases:
-
Listing all databases.
-
Listing a particular database.
-
Listing the default database.
-
Listing the home database.
These commands return the following columns:
Column | Description | Type | ||
---|---|---|---|---|
|
The name of the database. Default Output |
|
||
|
The type of the database: |
|
||
|
The names of any aliases the database may have. Default Output |
|
||
|
The database access mode, either
|
|
||
|
The database unique ID. |
|
||
|
The server instance ID. |
|
||
|
Instance address in a clustered DBMS.
The default for a standalone database is |
|
||
|
The current role of the database ( |
|
||
|
|
|
||
|
The expected status of the database. Default Output |
|
||
|
The actual status of the database. Default Output |
|
||
|
A message explaining the status of the database, often explaining why it is not in the correct state. Default Output |
|
||
|
Show if this is the default database for the DBMS. Default Output
|
|
||
|
Shown if this is the home database for the current user. Default Output
|
|
||
|
Number of primaries for this database reported as running currently.
It is the same as the number of rows where |
|
||
|
Number of secondaries for this database reported as running currently.
It is the same as the number of rows where |
|
||
|
The requested number of primaries for this database. May be lower than current if the DBMS is currently reducing the number of copies of the database, or higher if it is currently increasing the number of copies. |
|
||
|
The requested number of secondaries for this database. May be lower than current if the DBMS is currently reducing the number of copies of the database, or higher if it is currently increasing the number of copies. |
|
||
|
The date and time at which the database was created. |
|
||
|
The date and time at which the database was last started. |
|
||
|
The date and time at which the database was last stopped. |
|
||
|
Information about the storage engine and the store format. The value is a string formatted as:
|
|
||
|
The ID of the last transaction received. |
|
||
|
Number of transactions the current database is behind compared to the database on the primary instance.
The lag is expressed in negative integers. In standalone environments, the value is always |
|
||
|
The names of any constituents the database may have. Default Output |
|
A summary of all available databases can be displayed using the command SHOW DATABASES
.
SHOW DATABASES
name | type | aliases | access | address | role | writer | requestedStatus | currentStatus | statusMessage | default | home | constituents |
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 3 |
The results of this command are filtered according to the
If a user has not been granted |
Databases hosted on servers that are offline are also returned by the |
In this example, the detailed information for a particular database can be displayed using the command SHOW DATABASE name YIELD *
.
When a YIELD
clause is provided, the full set of columns is returned.
SHOW DATABASE movies YIELD *
name | aliases | access | databaseID | serverID | address | ... |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|
Rows: 1 |
The number of databases can be seen using a count()
aggregation with YIELD
and RETURN
.
SHOW DATABASES YIELD *
RETURN count(*) AS count
count |
---|
|
Rows: 1 |
The default database can be seen using the command SHOW DEFAULT DATABASE
.
SHOW DEFAULT DATABASE
name | type | aliases | access | address | role | writer | requestedStatus | currentStatus | statusMessage | constituents |
---|---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
Rows: 1 |
The home database for the current user can be seen using the command SHOW HOME DATABASE
.
SHOW HOME DATABASE
name | type | aliases | access | address | role | writer | requestedStatus | currentStatus | statusMessage | constituents |
---|---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
Rows: 1 |
It is also possible to filter and sort the results by using YIELD
, ORDER BY
, and WHERE
.
SHOW DATABASES YIELD name, currentStatus, requestedStatus
ORDER BY currentStatus
WHERE name CONTAINS 'o'
In this example:
-
The number of columns returned has been reduced with the
YIELD
clause. -
The order of the returned columns has been changed.
-
The results have been filtered to only show database names containing
'o'
. -
The results are ordered by the
currentStatus
column usingORDER BY
.
It is also possible to use SKIP
and LIMIT
to paginate the results.
name | currentStatus | requestedStatus |
---|---|---|
|
|
|
|
|
|
Rows: 2 |
Note that for failed databases, the |
For composite databases the constituents
column is particularly interesting as it lists the aliases that make up the composite database:
SHOW DATABASE library YIELD name, constituents
name | constituents |
---|---|
|
|
Rows: 1 |
Creating databases
Databases can be created using CREATE DATABASE
.
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`
). Using database names with dots without enclosing them in backticks is deprecated. -
Names cannot end with dots or dashes.
-
Names that begin with an underscore or with the prefix
system
are reserved for internal use.
Having dots ( |
CREATE DATABASE customers
System updates: 1
Rows: 0
When a database has been created, it will show up in the listing provided by the command SHOW DATABASES
.
SHOW DATABASES YIELD name
name |
---|
|
|
|
|
|
|
|
Rows: 7 |
Cluster topology
In a cluster environment, it may be desirable to control the number of servers used to host a database. The number of primary and secondary servers can be specified using the following command.
CREATE DATABASE `topology-example` TOPOLOGY 1 PRIMARY 0 SECONDARIES
For more details on primary and secondary server roles, see Cluster overview.
|
Creating composite databases
Composite databases do not contain data, but they reference to other databases that can be queried together through their constituent aliases. For more information about composite databases, see Operations Manual → Composite database introduction.
Composite databases can be created using CREATE COMPOSITE DATABASE
.
Composite database names are subject to the same rules as standard databases. One difference is however that the deprecated syntax using dots without enclosing the name in backticks is not available. Both dots and dashes need to be enclosed within backticks when using composite databases.
Having dots ( |
CREATE COMPOSITE DATABASE inventory
0 rows, System updates: 1
Composite database names are subject to the same rules as standard databases. One difference is however that the deprecated syntax using dots without enclosing the name in backticks is not available. Both dots and dashes needs to be enclosed within backticks when using composite databases. |
When a composite database has been created, it will show up in the listing provided by the command SHOW DATABASES
.
SHOW DATABASES YIELD name, type, access, role, writer, constituents
name | type | access | role | writer | constituents |
---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 8 |
In order to create database aliases in the composite database, give the composite database as namespace for the alias. For information about creating aliases in composite databases, see here.
Handling Existing Databases
These commands are optionally idempotent, with the default behavior to fail with an error if the database already exists.
Appending IF NOT EXISTS
to the command ensures that no error is returned 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.
These behavior flags apply to both standard and composite databases (e.g. a composite database may replace a standard one or another composite.)
CREATE COMPOSITE 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 |
Options
The CREATE DATABASE
command can have a map of options, e.g. OPTIONS {key: 'value'}
.
There are no available |
Key | Value | Description |
---|---|---|
|
|
Controls how the system handles existing data on disk when creating the database.
Currently this is only supported with |
|
instance ID of the cluster node |
Defines which instance is used for seeding the data of the created database.
The instance id can be taken from the id column of the |
|
URI to a backup or a dump from an existing database. |
Defines an identical seed from an external source which will be used to seed all servers. |
|
comma separated list of configuration values. |
Defines additional configuration specified by comma separated |
|
credentials |
Defines credentials that needs to be passed into certain seed providers. |
The |
Altering databases
Standard databases can be modified using the command ALTER DATABASE
.
Access
By default, a database has read-write access mode on creation.
The database can be limited to read-only mode on creation using the configuration parameters dbms.databases.default_to_read_only
, dbms.databases.read_only
, and dbms.database.writable
.
For details, see Configuration parameters.
A database that was created with read-write access mode can be changed to read-only.
To change it to read-only, you can use the ALTER DATABASE
command with the sub-clause SET ACCESS READ ONLY
.
Subsequently, the database access mode can be switched back to read-write using the sub-clause SET ACCESS READ WRITE
.
Altering the database access mode is allowed at all times, whether a database is online or offline.
If conflicting modes are set by the ALTER DATABASE
command and the configuration parameters, i.e. one says read-write and the other read-only, the database will be read-only and prevent write queries.
Modifying access mode is only available to standard databases and not composite databases. |
ALTER DATABASE customers SET ACCESS READ ONLY
System updates: 1
Rows: 0
The database access mode can be seen in the access
output column of the command SHOW DATABASES
.
SHOW DATABASES yield name, access
name | access |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 9 |
ALTER DATABASE
commands are optionally idempotent, with the default behavior to fail with an error if the database does not exist.
Appending IF EXISTS
to the command ensures that no error is returned and nothing happens should the database not exist.
ALTER DATABASE nonExisting IF EXISTS
SET ACCESS READ WRITE
Topology
In a cluster environment, it may be desirable to change the number of servers used to host a database. The number of primary and secondary servers can be specified using the following command:
ALTER DATABASE `topology-example`
SET TOPOLOGY 3 PRIMARY 0 SECONDARIES
It is not possible to automatically transition from a topology with multiple primary hosts to a topology with a single primary host, but it is possible to increase the number of primaries from one to more. See the Operations Manual → Alter topology for more information. |
SHOW DATABASES yield name, currentPrimariesCount, currentSecondariesCount, requestedPrimariesCount, requestedSecondariesCount
For more details on primary and secondary server roles, see Operations Manual → Clustering overview.
Modifying database topology is only available to standard databases and not composite databases. |
ALTER DATABASE
commands are optionally idempotent, with the default behavior to fail with an error if the database does not exist.
Appending IF EXISTS
to the command ensures that no error is returned and nothing happens should the database not exist.
ALTER DATABASE nonExisting IF EXISTS SET TOPOLOGY 1 PRIMARY 0 SECONDARY
0 rows
Stopping databases
Databases can be stopped using the command STOP DATABASE
.
STOP DATABASE customers
System updates: 1
Rows: 0
Both standard databases and composite databases can be stopped using this command. |
The status of the stopped database can be seen using the command SHOW DATABASE name
.
SHOW DATABASE customers YIELD name, requestedStatus, currentStatus
name | requestedStatus | currentStatus |
---|---|---|
|
|
|
Rows: 1 |
Starting databases
Databases can be started using the command START DATABASE
.
START DATABASE customers
System updates: 1
Rows: 0
Both standard databases and composite databases can be stopped using this command. |
The status of the started database can be seen using the command SHOW DATABASE name
.
SHOW DATABASE customers YIELD name, requestedStatus, currentStatus
name | requestedStatus | currentStatus |
---|---|---|
|
|
|
Rows: 1 |
Deleting databases
Standard and composite databases can be deleted by using the command DROP DATABASE
.
DROP DATABASE customers
System updates: 1
Rows: 0
It is also possible to ensure that only composite databases are dropped. A DROP COMPOSITE
request would then fail if the targeted database is a standard database.
When a database has been deleted, it will no longer show up in the listing provided by the command SHOW DATABASES
.
SHOW DATABASES YIELD name
name |
---|
|
|
|
|
|
|
|
|
This command is optionally idempotent, with the default behavior to fail with an error if the database does not exist.
Appending IF EXISTS
to the command ensures that no error is returned and nothing happens should the database not exist.
It will always return an error, if there is an existing alias that targets the database. In that case, the alias needs to be dropped before dropping the database.
DROP DATABASE customers IF EXISTS
The DROP DATABASE
command will remove a database entirely.
You can request that a dump of the store files is produced first, and stored in the path configured using the dbms.directories.dumps.root
setting (by default <neo4j-home>/data/dumps
).
This can be achieved by appending DUMP DATA
to the command (or DESTROY DATA
to explicitly request the default behavior).
These dumps are equivalent to those produced by neo4j-admin dump
and can be similarly restored using neo4j-admin load
.
DROP DATABASE `topology-example` DUMP DATA
The options IF EXISTS
and DUMP DATA
/ DESTROY DATA
can also be combined.
An example could look like this:
DROP DATABASE customers IF EXISTS DUMP DATA
It is also possible to ensure that only composite databases are dropped. A DROP COMPOSITE
request would then fail if the targeted database is a standard database.
DROP COMPOSITE DATABASE inventory
0 rows, System updates: 1
To ensure the database to be dropped is standard and not composite, the user first needs to check the type
column of SHOW DATABASES
manually.
Wait options
Aside from SHOW DATABASES
and ALTER DATABASE
, all database management commands accept an optional WAIT
/NOWAIT
clause.
The WAIT
/NOWAIT
clause allows you to specify a time limit in which the command must complete and return.
The options are:
-
WAIT n SECONDS
- Return once completed or when the specified time limit ofn
seconds is up. -
WAIT
- Return once completed or when the default time limit of 300 seconds is up. -
NOWAIT
- Return immediately.
A command using a WAIT
clause will automatically commit the current transaction when it executes successfully, as the command needs to run immediately for it to be possible to WAIT
for it to complete.
Any subsequent commands executed will therefore be performed in a new transaction.
This is different to the usual transactional behavior, and for this reason it is recommended that these commands be run in their own transaction.
The default behavior is NOWAIT
, so if no clause is specified the transaction will behave normally and the action is performed in the background post-commit.
A command with a |
CREATE DATABASE slow WAIT 5 SECONDS
address | state | message | success |
---|---|---|---|
|
|
|
|
Rows: 1 |
The success
column provides an aggregate status of whether or not the command is considered successful and thus every row will have the same value.
The intention of this column is to make it easy to determine, for example in a script, whether or not the command completed successfully without timing out.
A command with a WAIT
clause may be interrupted whilst it is waiting to complete.
In this event the command will continue to execute in the background and will not be aborted.
Was this page helpful?