From 6d796a8ed9dfef715fb831b3dd4ff89313d4e1ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Mon, 25 Aug 2025 13:44:03 +0200 Subject: [PATCH 1/2] clarifying note --- modules/ROOT/pages/introduction/cypher-neo4j.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/ROOT/pages/introduction/cypher-neo4j.adoc b/modules/ROOT/pages/introduction/cypher-neo4j.adoc index cbd2eea5f..66e60d60c 100644 --- a/modules/ROOT/pages/introduction/cypher-neo4j.adoc +++ b/modules/ROOT/pages/introduction/cypher-neo4j.adoc @@ -41,6 +41,13 @@ Only xref::constraints/managing-constraints.adoc#create-property-uniqueness-cons |=== +[NOTE] +The `system` database cannot be deleted. +The default user database, `neo4j`, can be deleted. +If you want to delete it, first set another database as the default using the procedure link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_setDefaultDatabase[`dbms.setDefaultDatabase]` (this must be done from the `system` database). +For more information, see the link:{neo4j-docs-base-uri}/operations-manual/current/clustering/databases/#cluster-default-database[Operations Manual -> Change the default database]. + + [[neo4j-terminology]] == Key Neo4j terminology From b2bf87008ed441f476602bb93225ec8cf8ab3848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Mon, 25 Aug 2025 14:37:48 +0200 Subject: [PATCH 2/2] small clarification --- modules/ROOT/pages/introduction/cypher-neo4j.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/introduction/cypher-neo4j.adoc b/modules/ROOT/pages/introduction/cypher-neo4j.adoc index 66e60d60c..1a1fc664a 100644 --- a/modules/ROOT/pages/introduction/cypher-neo4j.adoc +++ b/modules/ROOT/pages/introduction/cypher-neo4j.adoc @@ -18,7 +18,7 @@ Cypher works almost identically between the two editions, but there are key area | link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[Multi-database] a| -Any number of user databases. +A `system` database and any number of user databases. a| Only `system` and one user database.