DataGrip:如何获取 MySQL 数据库的数据库和表大小?
Posted
技术标签:
【中文标题】DataGrip:如何获取 MySQL 数据库的数据库和表大小?【英文标题】:DataGrip: How to get database and table size for MySQL database? 【发布时间】:2020-09-10 23:11:33 【问题描述】:使用 PhyMyAdmin 已有十多年了,我并没有研究 datagrip。我找不到的是关于数据库和表大小的统计信息。大小、行数(概览)、索引大小(以字节为单位)等等。
在 datagrip 中哪里可以找到数据统计信息?
【问题讨论】:
【参考方案1】:好像还没有这个功能。
对于那些从谷歌来的人,你可以尝试使用 SQL 查询: mysql:
SELECT table_schema "Data Base Name", sum( data_length + index_length ) / (1024 * 1024) "Data Base Size in MB" FROM information_schema.TABLES GROUP BY table_schema;
SELECT table_name, round(((data_length + index_length) / (1024*1024)),2) as "size in megs" FROM information_schema.tables WHERE table_schema = "named_db";
PostgreSQL:
SELECT pg_size_pretty( pg_database_size('dbname') );
SELECT pg_size_pretty( pg_total_relation_size('tablename') );
来源:https://jonathanstreet.com/blog/disk-space-database-table-mysql-postgresql/How to get size of mysql database?
【讨论】:
【参考方案2】:表,现在不可能了,请关注并点赞:https://youtrack.jetbrains.com/issue/DBE-4281
对于数据库,DataGrip 的跟踪器中甚至没有功能请求。请添加一个新的。
【讨论】:
太棒了!这么专业的工具,却缺少这样的基本功能。以上是关于DataGrip:如何获取 MySQL 数据库的数据库和表大小?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 JetBrains DataGrip 连接到远程 MySQL 数据库
如何在 DataGrip 中创建或连接到 localhost 数据库?
mysql 数据库安装,datagrip安装,datagrip连接数据库