Re: Exact table count for all tables in a schema.
It's a transactional engine, so at any moment "exact row count" depends on what's happening inside transactions.
-- InnoDB lastest estimate ...
select table_rows
from information_schema.tables
where table_schema="..." and table_name="...";
-- Count from index ...
select count(1) from ...;
Subject
Views
Written By
Posted
1847
September 13, 2019 01:53AM
Re: Exact table count for all tables in a schema.
580
September 13, 2019 09:43AM
570
September 16, 2019 11:15PM
561
September 17, 2019 10:07AM
579
September 19, 2019 12:24AM
594
September 19, 2019 09:38AM
643
September 20, 2019 04:04AM
530
September 20, 2019 09:50AM
535
September 20, 2019 10:03AM
632
September 20, 2019 12:45PM
554
September 22, 2019 11:51PM
501
September 23, 2019 10:21AM
593
September 24, 2019 10:45PM
544
September 25, 2019 11:01AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.