If you want to get full version information for your database, follow these steps:
SELECT * FROM v$version;
If you need your database parameters, then:
SELECT * FROM v$parameter;
If you need more information about your database instance, follow these steps:
SELECT * FROM v$database;
If you want the database properties to be as follows:
SELECT * FROM database_properties;
If you want the "size" of your database, this will give you a fairly close calculation:
SELECT SUM(bytes / (1024*1024)) "DB Size in MB" FROM dba_data_files;
You will need DBA permissions to view these views, or you can request data from your database administrator, and he will (probably) oblige.
Hope this helps ...
Ollie source share