Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: row count in table ?
The most accurate way would be to do
select count(*) from table
but that might be slow if your table is ~100GB in size. You can
still make a query to USER_TABLES or DBA_TABLES and there is a column
called NUM_ROWS which tels you how many rows did the table have when it
was last analyzed.
-----Original Message-----
Sent: Wednesday, April 18, 2001 9:31 PM
To: Multiple recipients of list ORACLE-L
All,
Is there an easy way to find out how many rows are there is each table for a schema? Thank you.
Andrea
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Apr 19 2001 - 13:27:27 CDT
![]() |
![]() |