diff --git a/modules/ROOT/pages/backup-restore/consistency-checker.adoc b/modules/ROOT/pages/backup-restore/consistency-checker.adoc index 5e55e2d30..5c434ef51 100644 --- a/modules/ROOT/pages/backup-restore/consistency-checker.adoc +++ b/modules/ROOT/pages/backup-restore/consistency-checker.adoc @@ -115,7 +115,7 @@ Value can be plain numbers, like `10000000` or e.g. `20G` for 20 gigabytes, or e | xref:configuration/configuration-settings.adoc#config_server.directories.transaction.logs.root[`server.directories.transaction.logs.root`] |--from-path= -|Path to the directory containing dump/backup artifacts that need to be checked for consistency. If the directory contains multiple backups, it will select the most recent backup chain, based on the transaction IDs found, to perform the consistency check. +|label:changed[Changed in 2025.09] Path to a backup file or a directory containing dump/backup artifacts. If the path is to a single file, that artifact is selected and checked for consistency. If a directory is provided, the tool selects the most recent backup chain (based on transaction IDs) within it and checks that chain for consistency. | |--temp-path= @@ -208,11 +208,13 @@ The backup chain must be aggregated into a full recovered backup artifact before See xref:backup-restore/aggregate.adoc[] for more details. ==== -Run with the `--from-path` option to check the consistency of a backup or a dump: +Run with the `--from-path` option to check the consistency of a backup or a dump. + +Starting with Neo4j 2025.09, the option accepts a path to a specific backup or dump file you want to be checked for consistency. +If only the directory is provided, the most recent backup chain (based on transaction IDs) within that directory will be checked. [source,shell] ---- -bin/neo4j-admin database check --from-path= neo4j +bin/neo4j-admin database check --from-path= neo4j ---- [[check-database-from-cloud-uris]]