Skip to content

Commit f2a2cb5

Browse files
Remove mentions of aliases from DBMS privileges (#2376) (#2383)
1 parent 2a16652 commit f2a2cb5

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

modules/ROOT/pages/authentication-authorization/dbms-administration.adoc

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ CREATE ROLE customAdministrator
159159
----
160160
GRANT ALL DBMS PRIVILEGES ON DBMS TO customAdministrator
161161
----
162-
. And explicitly deny the privilege to manage databases and aliases:
162+
. And explicitly deny the privilege to manage databases:
163163
+
164164
[source, cypher, role=noplay]
165165
----
@@ -172,7 +172,7 @@ DENY DATABASE MANAGEMENT ON DBMS TO customAdministrator
172172
GRANT TRANSACTION MANAGEMENT (*) ON DATABASE * TO customAdministrator
173173
----
174174

175-
The resulting role has privileges that include all DBMS privileges except creating, dropping, and modifying databases and aliases, as well as managing transactions.
175+
The resulting role has privileges that include all DBMS privileges except creating, dropping, and modifying databases, as well as managing transactions.
176176
Use the following query to list all privileges for the role `customAdministrator` as commands:
177177

178178
[source, cypher, role=noplay]
@@ -864,19 +864,19 @@ For more details about the syntax descriptions, see xref:database-administration
864864
GRANT [IMMUTABLE] CREATE DATABASE
865865
ON DBMS
866866
TO role[, ...]
867-
| Enables the specified roles to create new standard databases and aliases.
867+
| Enables the specified roles to create new standard databases.
868868

869869
| [source, syntax, role=noheader]
870870
GRANT [IMMUTABLE] DROP DATABASE
871871
ON DBMS
872872
TO role[, ...]
873-
| Enables the specified roles to delete standard databases and aliases.
873+
| Enables the specified roles to delete standard databases.
874874

875875
| [source, syntax, role=noheader]
876876
GRANT [IMMUTABLE] ALTER DATABASE
877877
ON DBMS
878878
TO role[, ...]
879-
| Enables the specified roles to modify standard databases and aliases.
879+
| Enables the specified roles to modify standard databases.
880880

881881
| [source, syntax, role=noheader]
882882
GRANT [IMMUTABLE] SET DATABASE ACCESS
@@ -906,20 +906,20 @@ GRANT COMPOSITE DATABASE MANAGEMENT
906906
GRANT [IMMUTABLE] DATABASE MANAGEMENT
907907
ON DBMS
908908
TO role[, ...]
909-
| Enables the specified roles to create, delete, and modify databases and aliases.
909+
| Enables the specified roles to create, delete, and modify databases.
910910

911911
|===
912912

913913

914-
The ability to create standard databases and aliases can be granted via the `CREATE DATABASE` privilege.
914+
The ability to create standard databases can be granted via the `CREATE DATABASE` privilege.
915915
See an example:
916916

917917
[source, cypher, role=noplay]
918918
----
919919
GRANT CREATE DATABASE ON DBMS TO databaseAdder
920920
----
921921

922-
The resulting role has privileges that only allow creating standard databases and aliases.
922+
The resulting role has privileges that only allow creating standard databases.
923923
List all privileges for the role `databaseAdder` as commands by using the following query:
924924

925925
[source, cypher, role=noplay]
@@ -959,15 +959,15 @@ SHOW ROLE compositeDatabaseAdder PRIVILEGES AS COMMANDS
959959
a|Rows: 1
960960
|===
961961

962-
The ability to delete standard databases and aliases can be granted via the `DROP DATABASE` privilege.
962+
The ability to delete standard databases can be granted via the `DROP DATABASE` privilege.
963963
See an example:
964964

965965
[source, cypher, role=noplay]
966966
----
967967
GRANT DROP DATABASE ON DBMS TO databaseDropper
968968
----
969969

970-
The resulting role has privileges that only allow deleting standard databases and aliases.
970+
The resulting role has privileges that only allow deleting standard databases.
971971
List all privileges for the role `databaseDropper` as commands by using the following query:
972972

973973
[source, cypher, role=noplay]
@@ -1007,15 +1007,15 @@ SHOW ROLE compositeDatabaseDropper PRIVILEGES AS COMMANDS
10071007
a|Rows: 1
10081008
|===
10091009

1010-
The ability to modify standard databases and aliases can be granted via the `ALTER DATABASE` privilege.
1010+
The ability to modify standard databases can be granted via the `ALTER DATABASE` privilege.
10111011
See an example:
10121012

10131013
[source, cypher, role=noplay]
10141014
----
10151015
GRANT ALTER DATABASE ON DBMS TO databaseModifier
10161016
----
10171017

1018-
The resulting role has privileges that only allow modifying standard databases and aliases.
1018+
The resulting role has privileges that only allow modifying standard databases.
10191019
List all privileges for the role `databaseModifier` as commands by using the following query:
10201020

10211021
[source, cypher, role=noplay]
@@ -1079,7 +1079,7 @@ SHOW ROLE compositeDatabaseManager PRIVILEGES AS COMMANDS
10791079
a|Rows: 1
10801080
|===
10811081

1082-
The ability to create, delete, and modify databases and aliases can be granted via the `DATABASE MANAGEMENT` privilege.
1082+
The ability to create, delete, and modify databases can be granted via the `DATABASE MANAGEMENT` privilege.
10831083
See an example:
10841084

10851085
[source, cypher, role=noplay]

0 commit comments

Comments
 (0)