Table record count

lappup

New Member
Is there a system table that hold record counts?

We are tying to find the number of records we have in each table. Due to its size, a sequential scan is out of the question - any ideas?
 
The external way would be to use proutil. Ours takes 20 mins to analyse 100 million records in a 27 Gb database.

e.g.
proutil -C tabanalys -db database_name.db > myanalysis.lst
 
Back
Top