diff --git a/modules/ROOT/pages/clustering/databases.adoc b/modules/ROOT/pages/clustering/databases.adoc index 649f6b7c6..d74616aca 100644 --- a/modules/ROOT/pages/clustering/databases.adoc +++ b/modules/ROOT/pages/clustering/databases.adoc @@ -501,6 +501,12 @@ neo4j@neo4j> SHOW DATABASES; To determine the cause of the problem, it is recommended to look at the `debug.log`. +[NOTE] +==== +Starting from Neo4j 2025.01, seed from URI can also be used in combination with xref:database-administration/standard-databases/create-databases.adoc[`CREATE OR REPLACE DATABASE`]. +==== + + [[file-seed-provider]] ==== FileSeedProvider diff --git a/modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc b/modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc index 90fdfbc99..cef7d448d 100644 --- a/modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc +++ b/modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc @@ -124,7 +124,9 @@ If the store is seeded with `seedURI`, `existingDataSeedInstance` or `existingDa [NOTE] ==== -The `existingData`, `existingDataSeedInstance`, `existingDataSeedServer`, `seedURI`, `seedConfig`, and `seedCredentials` options cannot be combined with the `OR REPLACE` part of this command. +Starting from Neo4j 2025.01, you can use `existingData`, `seedURI`, `seedConfig`, and `seedCredentials` options together with the `CREATE OR REPLACE DATABASE` command. + +The `existingDataSeedInstance` and `existingDataSeedServer` are still not supported with the `CREATE OR REPLACE DATABASE` command. More details about seeding options can be found in xref::clustering/databases.adoc#cluster-seed[Seed a cluster]. ====