Hi all,
I've created 2 different tablespaces:
TBS1.
1. CREATE TABLESPACE hdbx400M DATAFILE '/ora15/oradata/HDBSIL/HDBX400M001.dbf' SIZE 1993539584 REUSE DEFAULT STORAGE ( INITIAL 398704640 NEXT 398704640 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0);
2. Create a number of tables using tbs storage clause
3. select segment_name,bytes,initial_extent,next_extent from dba_segment
Results:
y1 398704640 398704640 398704640
y2 398704640 398704640 398704640
y3 398704640 398704640 398704640
y4 398704640 398704640 398704640
y5 398712832 398704640 398704640
TBS2.
1. CREATE TABLESPACE hdbxindex100M DATAFILE '/ora15/oradata/HDBSIL/HDBXIDX100M001.dbf' SIZE 1000095744 REUSE DEFAULT STORAGE ( INITIAL 100007936 NEXT 100007936 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0);
2. Create a number of indexes using tbs storage clause
3. select segment_name,bytes,initial_extent,next_extent from dba_segment
Results:
x1 100024320 100007936 100007936
........
x5 100024320 100007936 100007936
Q1. Why the bytes of index x's in TBS2 do not match initial/next extent (extra 16K) whereas bytes of table y's in in TBS1 do match with initial & extent ?
Q2. Why bytes of last table y5 has extra 8K than initial/extent ?
Rgds,
Suhaimi
I've created 2 different tablespaces:
TBS1.
1. CREATE TABLESPACE hdbx400M DATAFILE '/ora15/oradata/HDBSIL/HDBX400M001.dbf' SIZE 1993539584 REUSE DEFAULT STORAGE ( INITIAL 398704640 NEXT 398704640 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0);
2. Create a number of tables using tbs storage clause
3. select segment_name,bytes,initial_extent,next_extent from dba_segment
Results:
y1 398704640 398704640 398704640
y2 398704640 398704640 398704640
y3 398704640 398704640 398704640
y4 398704640 398704640 398704640
y5 398712832 398704640 398704640
TBS2.
1. CREATE TABLESPACE hdbxindex100M DATAFILE '/ora15/oradata/HDBSIL/HDBXIDX100M001.dbf' SIZE 1000095744 REUSE DEFAULT STORAGE ( INITIAL 100007936 NEXT 100007936 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0);
2. Create a number of indexes using tbs storage clause
3. select segment_name,bytes,initial_extent,next_extent from dba_segment
Results:
x1 100024320 100007936 100007936
........
x5 100024320 100007936 100007936
Q1. Why the bytes of index x's in TBS2 do not match initial/next extent (extra 16K) whereas bytes of table y's in in TBS1 do match with initial & extent ?
Q2. Why bytes of last table y5 has extra 8K than initial/extent ?
Rgds,
Suhaimi