Mokus
Mokus

Reputation: 10400

Mysql table size on the HDD

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

Upvotes: 2

Views: 2965

Answers (2)

onedevteam.com
onedevteam.com

Reputation: 4178

Get HeidiSQL, it can show table size in database list view....

Upvotes: 0

Pekka
Pekka

Reputation: 449485

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.

Upvotes: 2

Related Questions