in reply to Counting number of rows while working with Oracle

In SQL, the easy way to do this is:

 select count(*) from table_a

r,

Gus