Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> A query to return row counts of all tables in cat

A query to return row counts of all tables in cat

From: <erich.pearson_at_att.net>
Date: 30 Nov 2006 12:48:01 -0800
Message-ID: <1164919681.775740.168680@f1g2000cwa.googlegroups.com>


I'm trying to craft a query that will return all the tables listed in cat, along with the row count of each. Something like this:

TABLE_NAME     COUNT(*)
---------------------      -------------
TEST                   2257
CYCLE                  308
ACTIONS             6593

. . .

I tried:

SELECT TABLE_NAME, COUNT(*) FROM(SELECT TABLE_NAME FROM CAT) GROUP BY TABLE_NAME; but it just returns 1 for the row count.

Is this even possible to do without programming? Can someone please help me out?

Thanks!
Erich Pearson Received on Thu Nov 30 2006 - 14:48:01 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US