know the size of database

Hi all ,
How to know the size of a oracle database running in hp-ux server.

Try this with SQL-PLUS:

select sum(bytes/1048576) from dba_extents;

or:

select sum(bytes/1048576) from dba_data_files;

Regards