zoukankan      html  css  js  c++  java
  • 【MySQL】MySQL 5.7 sys Schema

    sys库说明:http://dev.mysql.com/doc/refman/5.7/en/sys-schema-usage.html

    sys库使用说明:http://dev.mysql.com/doc/refman/5.7/en/sys-schema-object-index.html

    参考:http://www.cnblogs.com/jiangwenju/p/5157333.html

    sys系统数据库结合了information_schema和performance_schema的数据,方便管理者和使用者查看数据库实例运行和使用情况。 

    打开sys库后可以看到一个表和99个视图,视图有两种,带'x$'的视图检出的数据没有经过转换,不带'x$'的视图检出的数据经过转换便于管理员直接阅读使用。官网的说明如下:

    The view without the x$ prefix is intended to provide output that is more user friendly and easier for humans to read. The view with the x$ prefix that displays the same values in raw form is intended more for use with other tools that perform their own processing on the data. For additional information about the differences between non-x$ and x$ views, see Section 24.4.3, “sys Schema Views”.
  • 相关阅读:
    terraform入门操作指南
    linux常用命令
    pssh用法范例
    nginx共享内存使用
    Redis监控指标[转]
    xargs用法笔记
    systemd用法记录一
    esxcli部分常用命令
    lua自定义功能模块table类型转string类型
    curl用法笔记
  • 原文地址:https://www.cnblogs.com/jiangxu67/p/5390786.html
Copyright © 2011-2022 走看看