Rechercher dans le manuel MySQL
13.7.1.11 SET ROLE Syntax
SET ROLE
modifies the current
user's effective privileges within the current session by
specifying which of its granted roles are active. Granted roles
include those granted explicitly to the user and those named in
the mandatory_roles
system
variable value.
Examples:
Each role name uses the format described in
Section 6.2.5, “Specifying Role Names”. The host name part of the role
name, if omitted, defaults to '%'
.
Privileges that the user has been granted directly (rather than through roles) remain unaffected by changes to the active roles.
The statement permits these role specifiers:
DEFAULT
: Activate the account default roles. Default roles are those specified withSET DEFAULT ROLE
.When a user connects to the server and authenticates successfully, the server determines which roles to activate as the default roles. If the
activate_all_roles_on_login
system variable is enabled, the server activates all granted roles. Otherwise, the server executesSET ROLE DEFAULT
implicitly. The server activates only default roles that can be activated. The server writes warnings to its error log for default roles that cannot be activated, but the client receives no warnings.If a user executes
SET ROLE DEFAULT
during a session, an error occurs if any default role cannot be activated (for example, if it does not exist or is not granted to the user). In this case, the current active roles are not changed.NONE
: Set the active roles toNONE
(no active roles).ALL
: Activate all roles granted to the account.ALL EXCEPT
: Activate all roles granted to the account except those named. The named roles need not exist or be granted to the account.role
[,role
] ...
: Activate the named roles, which must be granted to the account.role
[,role
] ...
SET DEFAULT ROLE
and
SET ROLE
DEFAULT
are different statements:
SET DEFAULT ROLE
defines which account roles to activate by default within account sessions.SET ROLE DEFAULT
sets the active roles within the current session to the current account default roles.
For role usage examples, see Section 6.2.10, “Using Roles”.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-set-role.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.