cancel
Showing results for 
Search instead for 
Did you mean: 

DB size

Former Member
0 Kudos

Hi Guru's,

How can i found out my db size apart from DB02.

I'm pulling data from r/3. I know no of records. if i want to calculate the size at which it grow.

If i know the no of records in r/3, how can i caluculate the size of the db in bw.

Thanks in advance.

Regards,

Vijay

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vijay,

Login to SQL and execute..

SQL> select sum(bytes) from dba_segments;

The above query will give you the DB Size in bytes

Regards

Thilip Kumar