Is there a way to get the count of rows in all tables in a mysql database without running a SELECT count() on each table?
Cheers
|
Is there a way to get the count of rows in all tables in a mysql database without running a Cheers | ||||
|
feedback
|
Note from the docs though: For InnoDB tables, the row count is only a rough estimate used in SQL optimization. | |||||||||||
feedback
|
|
You can probably put something together with Tables table. I've never done it, but it looks like it has a column for *TABLE_ROWS* and one for TABLE NAME. To get rows per table, you can use a query like this:
| |||||
feedback
|
|
Like @Venkatramanan and others I found INFORMATION_SCHEMA.TABLES unreliable (using InnoDB, MySQL 5.1.44), giving different row counts each time I run it even on quiesced tables. Here's a relatively hacky (but flexible/adaptable) way of generating a big SQL statement you can paste into a new query, without installing Ruby gems and stuff.
It produces output like this:
Copy and paste except for the last UNION to get nice output like,
| |||
|
feedback
|
| ||||
|
feedback
|
|
If you use the database information_schema, you can use this mysql code (the where part makes the query not show tables that have a null value for rows):
| |||
|
feedback
|
|
If you want the exact numbers, use the following ruby script. You need Ruby and RubyGems. Install following Gems:
File: count_table_records.rb
Go back to the command-line:
Output:
| |||
|
feedback
|
|
my easy sql to count TABLES and ALL RECORDS:
| |||
|
feedback
|