PDF (US Ltr)
- 43.3Mb
PDF (A4)
- 43.4Mb
Man Pages (TGZ)
- 297.2Kb
Man Pages (Zip)
- 402.4Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/keyring-hashicorp-plugin.html
Prepare a policy that to permit the previously created role to access appropriate secrets. Successful authentication requires that two secrets be provided to Vault, a role ID and a secret ID, which are similar in concept to user name and password.
https://dev.mysql.com/doc/refman/8.0/en/grant-tables.html
The default_roles Grant Table The default_roles table lists default user roles. It has these columns: HOST, USER: The account or role to which the default role applies. The role_edges Grant Table The role_edges table lists edges for role subgraphs.
https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html
The active applicable roles for an account can be selected from among those granted to the account, and can be changed during sessions for that account. The GRANT statement has an AS user [WITH ROLE] clause that specifies additional information ...
https://dev.mysql.com/doc/refman/8.0/en/mysql-installer-workflow.html
It can optionally create MySQL server user accounts with configurable permissions based on general roles, such as DB Administrator, DB Designer, and Backup Admin. 2.3.3.3.1.3 Accounts and Roles Root Account Password Assigning a root password is ...
https://dev.mysql.com/doc/refman/8.0/en/information-schema-general-table-reference.html
The following table summarizes INFORMATION_SCHEMA general tables. For greater detail, see the individual table descriptions. Table 28.2 INFORMATION_SCHEMA General Tables Table Name Description Introduced Deprecated ADMINISTRABLE_ROLE_AUTHORIZATIONS ...
https://dev.mysql.com/doc/refman/8.0/en/system-variable-privileges.html
Suppose that an administrator has created the following role to confer the ability to set restricted session system variables: CREATE ROLE set_session_sysvars; GRANT SYSTEM_VARIABLES_ADMIN ON *.* TO set_session_sysvars; Any user granted the ...(For ...
https://dev.mysql.com/doc/refman/8.0/en/information-schema-table-reference.html
The following table summarizes all available INFORMATION_SCHEMA tables. For greater detail, see the individual table descriptions. Table 28.1 INFORMATION_SCHEMA Tables Table Name Description Introduced Deprecated ADMINISTRABLE_ROLE_AUTHORIZATIONS ...
https://dev.mysql.com/doc/refman/8.0/en/keywords.html
Some keywords which are otherwise considered nonreserved are restricted from use as unquoted identifiers for roles, stored program labels, or, in some cases, both. Certain keywords, such as SELECT, DELETE, or BIGINT, are reserved and require special ...
https://dev.mysql.com/doc/refman/8.0/en/create-procedure.html
By default, when a routine with the SQL SECURITY DEFINER characteristic is executed, MySQL Server does not set any active roles for the MySQL account named in the DEFINER clause, only the default roles. The exception is if the ...By default, a ...
https://dev.mysql.com/doc/refman/8.0/en/information-functions.html
CURRENT_ROLE() Returns a utf8mb3 string containing the current active roles for the current session, separated by commas, or NONE if there are none. Suppose that an account is granted roles as follows: GRANT 'r1', 'r2' TO 'u1'@'localhost'; SET ...It ...