HDD 上的 MySQL 表大小
我有大约 80 个 csv 文件,每个文件包含 400 万行,我想计算磁盘大小。我怎样才能做到这一点?我有一个想法,上传一个文件并检查表大小,但我不知道在硬盘上哪里可以找到该表。我使用win7 64位只是为了测试
I have a around 80 csv files, each contains 4million rows, I want to make calculation regarding the disk size. How can I make this? I have an Idea, to upload one file and check the table size, but I don't know where can I find the table on the HDD. I'm using win7 64bit just for testing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到 mySQL 的数据目录。
默认情况下,它应该是安装 mySQL 的位置的子目录,并命名为
/data
。如果您使用 myISAM 表(它们是默认值),则可以对
{tablename}.FRM
进行全局搜索。Locate mySQL's data directory.
By default, it should be a subdirectory of wherever you installed mySQL to and named
/data
.If you use myISAM tables (they're the default), you can do a global search for
{tablename}.FRM
.获取HeidiSQL,它可以在数据库列表视图中显示表大小......
Get HeidiSQL, it can show table size in database list view....