cancel
Showing results for 
Search instead for 
Did you mean: 

Count on all the tables under sapsr3

Former Member
0 Kudos

Hello Experts ,

I need to find out the number of records in each table under the sapsr3 schema - could anyone please help me here ?? We are running Oracle 10.0.5.

Thanks

Dev

Accepted Solutions (1)

Accepted Solutions (1)

former_member182967
Active Contributor
0 Kudos

Hello Devpriy,

You can use the following SQL to get your approximate value (the result is depending on the DB statistics, it is not the real time data)

SQL> select TABLE_NAME, NUM_ROWS from DBA_TABLES where OWNER='SAPSR3'

Regards,

Ning Tong

Former Member
0 Kudos

Thanks a lot.

former_member185954
Active Contributor
0 Kudos

I would include the count clause to count tables, but anyways you got the idea

Answers (0)