Skip to content

Commit 41adb6a

Browse files
committed
Using quoting instead of escaping with backticks
1 parent 985abdb commit 41adb6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/ROOT/pages/backup-restore/copy-database.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ neo4j-admin database copy [-h] [--copy-schema] [--expand-commands] [--force] [--
4242
=== Description
4343

4444
This command will create a copy of a database.
45-
If your labels, properties, or relationships contain dots or commas, you can use ` to escape them, e.g. `My,label`. property .
45+
If your labels, properties, or relationships contain dots or commas, you can use backticks to quote them, e.g. ``My,label``, ``My.property``.
4646
A file named _<database-name>-schema.cypher_, containing the schema commands needed to recreate indexes/constraints on the copy, will be created.
4747

4848
From Neo4j 5.20 onwards, you can use the `--copy-schema` option to automatically copy the schema.

modules/ROOT/pages/database-administration/aliases/manage-aliases-composite-databases.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ Consider the same query but with the following parameter:
313313
----
314314

315315
Since the first dot will be used as a divider, the command will attempt to create the database alias `withdot.myalias` in the composite database `mycompositedatabase`.
316-
If `mycompositedatabase` doesn't exist, the command will create a database alias with the name `mycompositedatabase.withdot.myalias`, which is not part of any composite database.
316+
If `mycompositedatabase` does not exist, the command will create a database alias with the name `mycompositedatabase.withdot.myalias`, which is not part of any composite database.
317317

318318
In these cases, it is recommended to avoid parameters and explicitly escape the composite database name and alias name separately to avoid ambiguity.
319319

0 commit comments

Comments
 (0)