How to find Database Size

Follwing query will find the Database size in MB as well as in GB. SELECT Round(Sum(BYTES)/1024/1024) “Database_Size_In_MB”,Round(Sum(BYTES)/1024/1024/1024) “Database_Size_In_GB” FROM DBA_DATA_FILES;…

Oracle Applications RDBMS Database

-Get Tablespace Information SELECT T.TABLESPACE_NAME, Round(T.TOTAL_MBYTES) AS TOTAL_MB,Round(F.FREE_MBYTES) AS FREE_MB, Round(100 – (F.FREE_MBYTES/T.TOTAL_MBYTES) * 100) AS PCT_USED FROM (SELECT TABLESPACE_NAME,…

Managing Oracle Applications through scripts

Controlling Forms/Reports/Concurrent Managers =============================== All the controlling scripts are located under COMMON_TOP\admin\scripts\DB_Host directory i.e E:\Oracle\11i\viscomn\admin\scripts\VIS_Nimra Controlling Forms Server ———————— adfrmctl.cmd…