Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

टेबलस्पेस पर खाली जगह का पता लगाएं

मैं इस क्वेरी का उपयोग करता हूं

column "Tablespace" format a13
column "Used MB"    format 99,999,999
column "Free MB"    format 99,999,999
column "Total MB"   format 99,999,999
select
   fs.tablespace_name                          "Tablespace",
   (df.totalspace - fs.freespace)              "Used MB",
   fs.freespace                                "Free MB",
   df.totalspace                               "Total MB",
   round(100 * (fs.freespace / df.totalspace)) "Pct. Free"
from
   (select
      tablespace_name,
      round(sum(bytes) / 1048576) TotalSpace
   from
      dba_data_files
   group by
      tablespace_name
   ) df,
   (select
      tablespace_name,
      round(sum(bytes) / 1048576) FreeSpace
   from
      dba_free_space
   group by
      tablespace_name
   ) fs
where
   df.tablespace_name = fs.tablespace_name;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. विंडोज़ पर ओरेकल एसक्यूएल डेवलपर के साथ शुरुआत करना

  2. मैं इस तालिका में लगातार डुप्लिकेट मान कैसे प्राप्त कर सकता हूं?

  3. MySQL और Oracle के साथ ऑटो कुंजी पीढ़ी को हाइबरनेट करें

  4. कोर डंप फ़ाइल और Oracle ऐप्स के लिए निष्पादन योग्य एप्लिकेशन में डिबग कोड जोड़ना

  5. मैं अपने ऑरैकल डेटाबेस से कनेक्ट होने वाले सभी सत्रों को कैसे मार सकता हूं?