You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow database names to start with a digit (#1952)
We have relaxed the database naming rules to allow a database name to
start with a digit. Update docs to reflect this.
See also neo-technology/neo4j#28262
---------
Co-authored-by: Reneta Popova <[email protected]>
Copy file name to clipboardExpand all lines: modules/ROOT/pages/configuration/configuration-settings.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -812,7 +812,7 @@ m|+++0+++
812
812
|Description
813
813
a|Names of the databases allowed on this server; all others are denied. Empty means all are allowed. This configuration can be overridden when enabling the server or altered at runtime without changing this setting. Exclusive with `server.initial_denied_databases`.
814
814
|Valid values
815
-
a|A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character but not with the name `system`.
815
+
a|A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character or number but not with the name `system`.
816
816
|Default value
817
817
m|++++++
818
818
|===
@@ -828,7 +828,7 @@ m|++++++
828
828
|Description
829
829
a|Names of the databases not allowed on this server. Empty means nothing is denied. This configuration can be overridden when enabling the server or altered at runtime without changing this setting. Exclusive with `server.initial_allowed_databases`.
830
830
|Valid values
831
-
a|A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character but not with the name `system`.
831
+
a|A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character or number but not with the name `system`.
832
832
|Default value
833
833
m|++++++
834
834
|===
@@ -2183,7 +2183,7 @@ Once it is created, the setting is not valid anymore.
2183
2183
2184
2184
To set the default database, use the xref:/clustering/databases.adoc#cluster-default-database[`dbms.setDefaultDatabase()`] procedure instead.
2185
2185
|Valid values
2186
-
a|A valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character but not with the name system.
2186
+
a|A valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character or number but not with the name system.
2187
2187
|Default value
2188
2188
m|+++neo4j+++
2189
2189
|===
@@ -5001,7 +5001,7 @@ m|+++false+++
5001
5001
|Description
5002
5002
a|List of databases for which to prevent write queries. Databases not included in this list maybe read_only anyway depending upon the value of <<config_server.databases.default_to_read_only,server.databases.default_to_read_only>>.
5003
5003
|Valid values
5004
-
a| A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character but not with the name system.
5004
+
a| A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character or number but not with the name system.
5005
5005
|Default value
5006
5006
m|++++++
5007
5007
|===
@@ -5017,7 +5017,7 @@ m|++++++
5017
5017
|Description
5018
5018
a|List of databases for which to allow write queries. Databases not included in this list will allow write queries anyway, unless <<config_server.databases.default_to_read_only,server.databases.default_to_read_only>> is set to true.
5019
5019
|Valid values
5020
-
a|A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character but not with the name system.
5020
+
a|A comma-separated set where each element is a valid database name containing only alphabetic characters, numbers, dots, and dashes with a length between 3 and 63 characters, starting with an alphabetic character or number but not with the name system.
0 commit comments