Is there a way to get the row count of a user table without doing the?
select count(*) from <table>
which can take some time and even do a table scan if the table has millions
of rows in it.
Are there any system tables or views that hold this value for any given user
table?
-Martin