Query to get record count of all tables in a schema oracle

Query to get record count of all tables in a schema oracle

select table_name, 
       to_number(extractvalue(xmltype(dbms_xmlgen.getxml('select count(*) c from '||owner||'.'||table_name)),'/ROWSET/ROW/C')) as count
from all_tables
where owner = '<SCHEMA_NAME>'