Rechercher dans le manuel MySQL
Chapter 27 MySQL sys Schema
Table of Contents [+/-]
MySQL 8.0 includes the
sys
schema, a set of objects that
helps DBAs and developers interpret data collected by the
Performance Schema. sys
schema objects
can be used for typical tuning and diagnosis use cases. Objects in
this schema include:
Views that summarize Performance Schema data into more easily understandable form.
Stored procedures that perform operations such as Performance Schema configuration and generating diagnostic reports.
Stored functions that query Performance Schema configuration and provide formatting services.
For new installations, the sys
schema
is installed by default during data directory initialization if you
use mysqld with the
--initialize
or
--initialize-insecure
option. If this
is not desired, you can drop the sys
schema manually after initialization if it is unneeded.
The MySQL upgrade procedure produces an error if a
sys
schema exists but has no
version
view, on the assumption that
absence of this view indicates a user-created sys
schema. To upgrade in this case, remove or rename the existing
sys
schema first.
sys
schema objects have a
DEFINER
of
'mysql.sys'@'localhost'
. Use of the dedicated
mysql.sys
account avoids problems that occur if a
DBA renames or removes the root
account.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-sys-schema.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.