DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: total number of records in each schema?

  1. #1
    Join Date
    Nov 2001
    Location
    Singapore
    Posts
    182

    total number of records in each schema?

    Hi,

    How to find total number of records under each user/schema?
    J Gangadhar

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    assuming you analyze,
    select owner, sum(num_rows)
    from dba_Tables
    group by owner
    Jeff Hunter

  3. #3
    Join Date
    Nov 2001
    Location
    Singapore
    Posts
    182
    Tks Martis.

    how to find out the same without analyzing schema/tables?
    J Gangadhar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width