I know i need to use this query to get the list of tables for a schema: select table_name from all_tables where owner='schema'
I know the following query counts the record in a table: select count(*) from schema.table
There are 2400+ tables in that schema. My question is how to count the number of records from all the tables using one step?