Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ SHOW ROLE admin PRIVILEGES AS COMMANDS
a|Rows: 11
|===

If the built-in `admin` role has been altered or dropped, and needs to be restored to its original state, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/password-and-user-recovery[Operations Manual -> Password and user recovery].
If the built-in `admin` role has been altered or dropped, and needs to be restored to its original state, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/password-and-user-recovery/[Operations Manual -> Password and user recovery].


[[access-control-built-in-roles-admin-recreate]]
Expand Down Expand Up @@ -415,4 +415,4 @@ GRANT ALL ON DATABASE * TO admin

The resulting `admin` role now has the same privileges as the original built-in `admin` role.

Additional information about restoring the `admin` role can be found at link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/password-and-user-recovery#recover-admin-role[Operations Manual -> Recover the admin role].
Additional information about restoring the `admin` role can be found at link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/password-and-user-recovery/#recover-admin-role[Operations Manual -> Recover the admin role].
2 changes: 1 addition & 1 deletion modules/ROOT/pages/clauses/call.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Neo4j comes with a number of built-in procedures.
For a list of these, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures[Operations Manual -> Procedures].

Users can also develop custom procedures and deploy to the database.
See link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/procedures#extending-neo4j-procedures[Java Reference -> User-defined procedures] for details.
See link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/procedures/[Java Reference -> User-defined procedures] for details.
====


Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/clauses/load-csv.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ RETURN DISTINCT file() AS path
----

Since `LOAD CSV` can temporary download a file to process it, it is important to note that `file()` will always return the path on disk.
If `LOAD CSV` is invoked with a `file:///` URL that points to your disk `file()` will return that same path.
If `LOAD CSV` is invoked with a `\file:///` URL that points to your disk `file()` will return that same path.

.Result
[queryresult]
Expand Down
Loading