How can we find the size of a database?

Answers were Sorted based on User's Feedback



How can we find the size of a database?..

Answer / ammar takieddin

select sum(bytes)/1024/1024 from dba_data_files;
+
select sum(bytes)/1024/1024 from v$log;

Is This Answer Correct ?    4 Yes 0 No

How can we find the size of a database?..

Answer / er. debashreet das

actually, size of a database can be calculated by various
factors:
1. total bytes allocated to the table, i.e., suppose we
create a table as
create table tr_deb(name varchar2(15), roll_no number(4),
branch varchar(20), photo blob(50));
then, total size will be 15 + 4 + 20 +50 = 89 bytes

2. also, calculate the primary and secondary extents. That
means we have to calculate the memory size required for
that table(relation), i.e., for tr_deb relation. This is
called primary extent.
3. Then, finally, we have to calculate(actually predict)
the secondary extent. Let us understand in this way:
suppose, our table "tr_deb" may be expanded in near future,
if students get admitted, then, we have to store their
address, phone number, etc. Again, we can decompose the
composite attributes into component attributes(sub-
attributes) and calculate their size(primary and secondary
extent)

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More Oracle General Interview Questions

Can we write dml statement in function in oracle?

0 Answers  


What is PL/SQL ?

0 Answers  


How to create lov dynamically at runtime & attach to text field?

0 Answers  


How to put more than 1000 values into an oracle in clause?

0 Answers  


What is the difference between I and G in Oracle?

0 Answers   MCN Solutions,






What is a package in oracle?

0 Answers  


How to add a new column to an existing table with a default value?

0 Answers  


How to set a transaction to be read only in oracle?

0 Answers  


Can objects of the same schema reside in different tablespace?

0 Answers  


how to produce numbers from 1 to 10 using dual table

4 Answers   Genpact,


What is a cursor and what are the steps need to be taken?

0 Answers  


What is a Temporary Segment ?

2 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)