| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: counting rows in all_tables ???????
Erik,
One way is to write some sql that will write some sql...
e.g.
sql> describe all_tables
sql> spool count.sql
sql> select ' select count(*) from ' || table_owner || '.' table_name ||
';'
from all_tables order by owner , table_name;
I may not have the correct column names but I hope you get the idea. Anyway it is a good technique to develop.
Mike Received on Wed Jul 23 1997 - 00:00:00 CDT
![]() |
![]() |