Oracle Drop Table 釋放空間測試

來源:互聯網
上載者:User

  Drop Table會釋放所佔segment的空間,而資料檔案佔用OS空間不變

一.建立資料表空間,表,插入300條資料

 1 SQL> create tablespace tbs datafile '/opt/oracle/oradata/nwom/TEST_TBS.dbf' size 1m autoextend off; 2  3 Tablespace created. 4  5 SQL> create table t1 (a char(2000)) tablespace tbs; 6  7 Table created. 8  9 --插入300條資料10 SQL> begin11   2     for i in 1..300 loop12   3             insert into t1 values('a');13   4     end loop;14   5  end;15   6  /16 17 PL/SQL procedure successfully completed.18 19 SQL> commit;20 21 Commit complete.22 23 SQL> select count(*) from t1;24 25   COUNT(*)26 ----------27        300

二.查看錶所佔用的segment

 1 --300條資料佔用段0.9375M 2 SQL> col SEGMENT_NAME format a10; 3 SQL> col SEGMENT_TYPE format a20 4 SQL> col TABLESPACE_NAME format a20 5 SQL> select segment_name, segment_type, tablespace_name, bytes/1024/1024 "SIZE(M)" 6   2  from user_segments where segment_name='T1'; 7  8 SEGMENT_NA SEGMENT_TYPE         TABLESPACE_NAME         SIZE(M) 9 ---------- -------------------- -------------------- ----------10 T1         TABLE                TBS                       .937511 12 SQL> 

三.Drop Table

1 SQL> drop table t1;2 3 Table dropped.

四.Drop Table後,查看錶所佔用的segment

1 SQL> select segment_name, segment_type, tablespace_name, bytes/1024/1024 "SIZE(M)"2   2  from user_segments where segment_name='T1';3 4 no rows selected

五.重建立表t1,插入資料100條

 1 SQL> create table t1 (a char(2000)) tablespace tbs; 2  3 Table created. 4  5 --插入100條資料 6 SQL> begin 7   2     for i in 1..100 loop 8   3             insert into t1 values('a'); 9   4     end loop;10   5  end;11   6  /12 13 PL/SQL procedure successfully completed.14 15 SQL> commit;16 17 Commit complete.18 19 20 SQL> select count(*) from t1;21 22   COUNT(*)23 ----------24        100

六.查看錶t1所佔用segment

1 SQL> select segment_name, segment_type, tablespace_name, bytes/1024/1024 "SIZE(M)"2   2  from user_segments where segment_name='T1';3 4 SEGMENT_NA SEGMENT_TYPE         TABLESPACE_NAME         SIZE(M)5 ---------- -------------------- -------------------- ----------6 T1         TABLE                TBS                       .31257 8 SQL>

結論:對比二與六的size(M),可知Drop Table會釋放表佔用的segment。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.