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
Copy file name to clipboardExpand all lines: modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,13 +76,16 @@ The `CREATE DATABASE` command can have a map of options, e.g. `OPTIONS {key: 'va
76
76
| `use`
77
77
|
78
78
Controls how the system handles existing data on disk when creating the database.
79
-
Currently, this is only supported with `existingDataSeedInstance` and `seedURI`, and must be set to `use`, which indicates the existing data files should be used for the new database.
79
+
Currently, this is only supported with `existingDataSeedInstance`, `existingDataSeedServer` and `seedURI`, and must be set to `use`, which indicates the existing data files should be used for the new database.
80
80
81
-
| `existingDataSeedInstance`
81
+
82
+
|`existingDataSeedServer` label:new[new in 5.25]
83
+
84
+
`existingDataSeedInstance` label:deprecated[deprecated in 5.25]
82
85
| ID of the cluster server
83
86
|
84
87
Defines which server is used for seeding the data of the created database.
85
-
The server ID can be found in the `serverId` column after running `SHOW SERVERS`.
88
+
The server ID can be found in the `serverId` column after running `SHOW SERVERS`. `existingDataSeedInstance` was replaced by `existingDataSeedServer` in Neo4j 5.25.
86
89
87
90
| `seedURI`
88
91
| URI to a backup or a dump from an existing database.
@@ -110,12 +113,12 @@ For details about enrichment mode, see link:{neo4j-docs-base-uri}/cdc/current/ge
Defines the store format if the database created is new.
113
-
If the store is seeded with `seedURI`or `existingDataSeedInstance`, or if the command is being used to mount pre-existing store files already present on the disk, they will use their current store format without any alterations.
116
+
If the store is seeded with `seedURI`, `existingDataSeedInstance` or `existingDataSeedServer`, or if the command is being used to mount pre-existing store files already present on the disk, they will use their current store format without any alterations.
114
117
|===
115
118
116
119
[NOTE]
117
120
====
118
-
The `existingData`, `existingDataSeedInstance`, `seedURI`, `seedConfig`, and `seedCredentials` options cannot be combined with the `OR REPLACE` part of this command.
121
+
The `existingData`, `existingDataSeedInstance`, `existingDataSeedServer`, `seedURI`, `seedConfig`, and `seedCredentials` options cannot be combined with the `OR REPLACE` part of this command.
119
122
More details about seeding options can be found in xref::clustering/databases.adoc#cluster-seed[Seed a cluster].
0 commit comments