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 |
||||
|
|
Note from the docs though: For InnoDB tables, the row count is only a rough estimate used in SQL optimization. |
|||||||||||||||
|
|
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:
|
|||||||
|
|
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,
|
||||
|
|
|
||||
|
|
That's all you need. |
||||
|
|
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):
|
|||
|
|
|
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:
|
|||
|
|
|
This is how I count TABLES and ALL RECORDS using PHP:
|
||||
|
|
|
The following query produces a(nother) query that will get the value of count(*) for every table, from every schema, listed in information_schema.tables. The entire result of the query shown here - all rows taken together - comprise a valid SQL statement ending in a semicolon - no dangling 'union'. The dangling union is avoided by use of a union in the query below.
|
||||
|
|