The AskTOM team is taking a break over the holiday season, so we're not taking questions or responding to comments. Please have a happy and safe festive season and as always, thanks for being a member of the AskTOM community.
Thanks for the question, Mac.
Asked: April 18, 2017 - 2:26 pm UTC
Last updated: April 19, 2017 - 1:03 am UTC
Version: 12c
Viewed 1000+ times
SQL> create table t ( x char(1000) ) compress basic; Table created. SQL> SQL> insert into t 2 select 'x' 3 from dual connect by level <= 100000; 100000 rows created. SQL> SQL> commit; Commit complete. SQL> SQL> select bytes/1024/1024 meg from user_segments 2 where segment_name = 'T'; MEG ---------- 104 1 row selected. SQL> SQL> truncate table t drop storage; Table truncated. SQL> SQL> SQL> insert /*+ append */ into t 2 select 'x' 3 from dual connect by level <= 100000; 100000 rows created. SQL> SQL> commit; Commit complete. SQL> SQL> select bytes/1024/1024 meg from user_segments 2 where segment_name = 'T'; MEG ---------- 2
Need more information on hints? Check out the complete hint descriptions