会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
天涯海角附近
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2020年2月28日
Mysql查看连接数(连接总数、活跃数、最大并发数)
摘要: show variables like '%max_connection%'; set global max_connections=1000;
阅读全文
posted @ 2020-02-28 15:41 天涯海角附近
阅读(295)
评论(0)
推荐(0)
MYSQL获取表空间大小
摘要: SELECT table_name AS "Table", round(((data_length + index_length) / 1024 / 1024), 2) as size FROM information_schema.TABLES where table_name= "audit_l
阅读全文
posted @ 2020-02-28 15:36 天涯海角附近
阅读(213)
评论(0)
推荐(0)