Skip to content

Commit adb64ee

Browse files
committed
Update which options are available in CSV and which in Parquet
1 parent 81f3635 commit adb64ee

File tree

9 files changed

+197
-47
lines changed

9 files changed

+197
-47
lines changed

modules/ROOT/content-nav.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@
103103
*** xref:configuration/configuration-settings.adoc#_transaction_settings[Transaction settings]
104104
*** xref:configuration/configuration-settings.adoc#_transaction_log_settings[Transaction log settings]
105105
106+
* xref:import.adoc[]
107+
106108
* xref:database-administration/index.adoc[]
107109
** xref:database-administration/syntax.adoc[]
108110
** Standard databases
@@ -230,7 +232,6 @@
230232
*** xref:tools/neo4j-admin/neo4j-admin-report.adoc[]
231233
*** xref:tools/neo4j-admin/neo4j-admin-store-info.adoc[]
232234
*** xref:tools/neo4j-admin/neo4j-admin-memrec.adoc[]
233-
*** xref:tools/neo4j-admin/neo4j-admin-import.adoc[]
234235
*** xref:tools/neo4j-admin/unbind.adoc[]
235236
*** xref:tools/neo4j-admin/upload-to-aura.adoc[]
236237
*** xref:tools/neo4j-admin/migrate-database.adoc[]

modules/ROOT/pages/database-internals/store-formats.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ You can either set the store format when creating a new database or change the s
9494

9595
`block` is the default format for all newly-created databases as long as they do not have the xref:configuration/configuration-settings.adoc#config_db.format[`db.format`] setting specified. +
9696
If you want to change it, you can set a new value for the xref:configuration/configuration-settings.adoc#config_db.format[`db.format`] configuration in the _neo4j.conf_ file. +
97-
You can also create a new database on a specific store format by passing the new format as an argument to the command creating the database, for example, xref:tools/neo4j-admin/neo4j-admin-import.adoc#import-tool-full[`neo4j-admin database import full`] or xref:backup-restore/copy-database.adoc[`neo4j-admin database copy`] commands, or by using `storeFormat:` option in the Cypher command `CREATE DATABASE`.
97+
You can also create a new database on a specific store format by passing the new format as an argument to the command creating the database, for example, xref:import.adoc#import-tool-full[`neo4j-admin database import full`] or xref:backup-restore/copy-database.adoc[`neo4j-admin database copy`] commands, or by using `storeFormat:` option in the Cypher command `CREATE DATABASE`.
9898

9999
The following examples show how to create a new database on the `block` store format.
100100
However, the same applies to other formats.

modules/ROOT/pages/docker/operations.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For more information about the `neo4j-admin` commands, see xref:tools/neo4j-admi
2121
[[docker-neo4j-import]]
2222
== Use Neo4j Import
2323

24-
The xref:tools/neo4j-admin/neo4j-admin-import.adoc[Neo4j Import tool] can be run locally within a container using the following commands:
24+
The xref:import.adoc[Neo4j Import tool] can be run locally within a container using the following commands:
2525

2626
[source, shell]
2727
----
@@ -35,14 +35,14 @@ and
3535
docker exec --interactive --tty <containerID/name> neo4j-admin database import incremental <options>
3636
----
3737

38-
For more information about the commands' syntax and options, see xref:tools/neo4j-admin/neo4j-admin-import.adoc#import-tool-full[Full import] and xref:tools/neo4j-admin/neo4j-admin-import.adoc#import-tool-incremental[Incremental import].
38+
For more information about the commands' syntax and options, see xref:import.adoc#import-tool-full[Full import] and xref:import.adoc#import-tool-incremental[Incremental import].
3939

4040
[discrete]
4141
[[docker-import-prerequisites]]
4242
=== Prerequisites
4343

4444
* Verify that you have created the folders that you want to mount as volumes to the Neo4j docker container.
45-
* Verify that the CSV files that you want to load into Neo4j are formatted as per xref:tools/neo4j-admin/neo4j-admin-import.adoc#import-tool-header-format[CSV header format].
45+
* Verify that the CSV files that you want to load into Neo4j are formatted as per xref:import.adoc#import-tool-header-format[CSV header format].
4646
* Verify that you have added the CSV files to the folder that will be mounted to _/import_ in your container.
4747

4848
[discrete]

0 commit comments

Comments
 (0)