Table and its count - Oracle September 25, 2020 To get the number of rows in all tables in Oracle database, use this query. SELECT table_name,num_rows FROM all_tables WHERE owner = 'SCHEMA'; Read more