SELECT
t.table_name,
TO_NUMBER(EXTRACTVALUE(
XMLTYPE(DBMS_XMLGEN.GETXML(
'SELECT COUNT(*) AS c FROM "' || t.table_name || '"'
)),
'/ROWSET/ROW/C'
)) AS row_count
FROM
user_tables t
ORDER BY
t.table_name;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)