diff --git a/modules/ROOT/pages/authentication-authorization/dbms-administration.adoc b/modules/ROOT/pages/authentication-authorization/dbms-administration.adoc index 2e7968fe5..0d3b6db31 100644 --- a/modules/ROOT/pages/authentication-authorization/dbms-administration.adoc +++ b/modules/ROOT/pages/authentication-authorization/dbms-administration.adoc @@ -159,7 +159,7 @@ CREATE ROLE customAdministrator ---- GRANT ALL DBMS PRIVILEGES ON DBMS TO customAdministrator ---- -. And explicitly deny the privilege to manage databases and aliases: +. And explicitly deny the privilege to manage databases: + [source, cypher, role=noplay] ---- @@ -172,7 +172,7 @@ DENY DATABASE MANAGEMENT ON DBMS TO customAdministrator GRANT TRANSACTION MANAGEMENT (*) ON DATABASE * TO customAdministrator ---- -The resulting role has privileges that include all DBMS privileges except creating, dropping, and modifying databases and aliases, as well as managing transactions. +The resulting role has privileges that include all DBMS privileges except creating, dropping, and modifying databases, as well as managing transactions. Use the following query to list all privileges for the role `customAdministrator` as commands: [source, cypher, role=noplay] @@ -864,19 +864,19 @@ For more details about the syntax descriptions, see xref:database-administration GRANT [IMMUTABLE] CREATE DATABASE ON DBMS TO role[, ...] -| Enables the specified roles to create new standard databases and aliases. +| Enables the specified roles to create new standard databases. | [source, syntax, role=noheader] GRANT [IMMUTABLE] DROP DATABASE ON DBMS TO role[, ...] -| Enables the specified roles to delete standard databases and aliases. +| Enables the specified roles to delete standard databases. | [source, syntax, role=noheader] GRANT [IMMUTABLE] ALTER DATABASE ON DBMS TO role[, ...] -| Enables the specified roles to modify standard databases and aliases. +| Enables the specified roles to modify standard databases. | [source, syntax, role=noheader] GRANT [IMMUTABLE] SET DATABASE ACCESS @@ -906,12 +906,12 @@ GRANT COMPOSITE DATABASE MANAGEMENT GRANT [IMMUTABLE] DATABASE MANAGEMENT ON DBMS TO role[, ...] -| Enables the specified roles to create, delete, and modify databases and aliases. +| Enables the specified roles to create, delete, and modify databases. |=== -The ability to create standard databases and aliases can be granted via the `CREATE DATABASE` privilege. +The ability to create standard databases can be granted via the `CREATE DATABASE` privilege. See an example: [source, cypher, role=noplay] @@ -919,7 +919,7 @@ See an example: GRANT CREATE DATABASE ON DBMS TO databaseAdder ---- -The resulting role has privileges that only allow creating standard databases and aliases. +The resulting role has privileges that only allow creating standard databases. List all privileges for the role `databaseAdder` as commands by using the following query: [source, cypher, role=noplay] @@ -959,7 +959,7 @@ SHOW ROLE compositeDatabaseAdder PRIVILEGES AS COMMANDS a|Rows: 1 |=== -The ability to delete standard databases and aliases can be granted via the `DROP DATABASE` privilege. +The ability to delete standard databases can be granted via the `DROP DATABASE` privilege. See an example: [source, cypher, role=noplay] @@ -967,7 +967,7 @@ See an example: GRANT DROP DATABASE ON DBMS TO databaseDropper ---- -The resulting role has privileges that only allow deleting standard databases and aliases. +The resulting role has privileges that only allow deleting standard databases. List all privileges for the role `databaseDropper` as commands by using the following query: [source, cypher, role=noplay] @@ -1007,7 +1007,7 @@ SHOW ROLE compositeDatabaseDropper PRIVILEGES AS COMMANDS a|Rows: 1 |=== -The ability to modify standard databases and aliases can be granted via the `ALTER DATABASE` privilege. +The ability to modify standard databases can be granted via the `ALTER DATABASE` privilege. See an example: [source, cypher, role=noplay] @@ -1015,7 +1015,7 @@ See an example: GRANT ALTER DATABASE ON DBMS TO databaseModifier ---- -The resulting role has privileges that only allow modifying standard databases and aliases. +The resulting role has privileges that only allow modifying standard databases. List all privileges for the role `databaseModifier` as commands by using the following query: [source, cypher, role=noplay] @@ -1079,7 +1079,7 @@ SHOW ROLE compositeDatabaseManager PRIVILEGES AS COMMANDS a|Rows: 1 |=== -The ability to create, delete, and modify databases and aliases can be granted via the `DATABASE MANAGEMENT` privilege. +The ability to create, delete, and modify databases can be granted via the `DATABASE MANAGEMENT` privilege. See an example: [source, cypher, role=noplay]