<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Did you know &#8230;</title>
	<atom:link href="http://jonathanlewis.wordpress.com/2009/11/06/did-you-know/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanlewis.wordpress.com/2009/11/06/did-you-know/</link>
	<description>Just another Oracle weblog</description>
	<lastBuildDate>Sat, 18 May 2013 11:04:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Blogroll Report 30/10/2009-06/11/2009 &#171; Coskan&#8217;s Approach to Oracle</title>
		<link>http://jonathanlewis.wordpress.com/2009/11/06/did-you-know/#comment-34854</link>
		<dc:creator><![CDATA[Blogroll Report 30/10/2009-06/11/2009 &#171; Coskan&#8217;s Approach to Oracle]]></dc:creator>
		<pubDate>Tue, 17 Nov 2009 00:55:31 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=2470#comment-34854</guid>
		<description><![CDATA[[...] Jonathan Lewis-Did you know? [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Jonathan Lewis-Did you know? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Lewis</title>
		<link>http://jonathanlewis.wordpress.com/2009/11/06/did-you-know/#comment-34818</link>
		<dc:creator><![CDATA[Jonathan Lewis]]></dc:creator>
		<pubDate>Mon, 09 Nov 2009 18:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=2470#comment-34818</guid>
		<description><![CDATA[Exactly,
You&#039;ve picked an example right at the boundary to demonstrate the principle.  

You don&#039;t actually have to do the manual allocation of extents, by the way. Apart from the special case of the first 1MB of space allocated under system managed extents, Oracle will round-robin extents through the available data files.

To increase the visibility of the effect, you could even try using freelist management instead of the default 11g ASSM (automatic segment space management).  (No need to post the results, though).]]></description>
		<content:encoded><![CDATA[<p>Exactly,<br />
You&#8217;ve picked an example right at the boundary to demonstrate the principle.  </p>
<p>You don&#8217;t actually have to do the manual allocation of extents, by the way. Apart from the special case of the first 1MB of space allocated under system managed extents, Oracle will round-robin extents through the available data files.</p>
<p>To increase the visibility of the effect, you could even try using freelist management instead of the default 11g ASSM (automatic segment space management).  (No need to post the results, though).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: srivenu</title>
		<link>http://jonathanlewis.wordpress.com/2009/11/06/did-you-know/#comment-34813</link>
		<dc:creator><![CDATA[srivenu]]></dc:creator>
		<pubDate>Sat, 07 Nov 2009 22:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=2470#comment-34813</guid>
		<description><![CDATA[There were more 50-50 block splits for IX_SMALL (from V$SESSTAT).
regards
srivenu]]></description>
		<content:encoded><![CDATA[<p>There were more 50-50 block splits for IX_SMALL (from V$SESSTAT).<br />
regards<br />
srivenu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: srivenu</title>
		<link>http://jonathanlewis.wordpress.com/2009/11/06/did-you-know/#comment-34812</link>
		<dc:creator><![CDATA[srivenu]]></dc:creator>
		<pubDate>Sat, 07 Nov 2009 20:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=2470#comment-34812</guid>
		<description><![CDATA[Hi jonathan,
I could think of a test case where an index could get bigger when created in a tablespace with more than 1 datafile vs creating it in a bigfile tablespace.

using 11.1.0.6.0 on windows xp x64

create bigfile tablespace DATA_BIG datafile &#039;C:\ORADATA\ORCL\DATA_BIG01.DBF&#039; size 512m;

create bigfile tablespace DATA_SMALL datafile &#039;C:\ORADATA\ORCL\DATA_SMALL01.DBF&#039; size 512m,  &#039;C:\ORADATA\ORCL\DATA_SMALL02.DBF&#039; size 512m;

drop table x_small
/
drop table x_big
/
create table x_small(c1 char(100)) tablespace data_small
/
create index ix_small on x_small(c1) tablespace users
/
create table x_big(c1 char(100)) tablespace data_big
/
create index ix_big on x_big(c1) tablespace users
/

Now i allocate extents to X_SMALL across both the files

alter table x_small allocate extent (datafile &#039;C:\ORADATA\ORCL\TEST01.DBF&#039;);
alter table x_small allocate extent (datafile &#039;C:\ORADATA\ORCL\TEST02.DBF&#039;);
alter table x_small allocate extent (datafile &#039;C:\ORADATA\ORCL\TEST01.DBF&#039;);
alter table x_small allocate extent (datafile &#039;C:\ORADATA\ORCL\TEST02.DBF&#039;);


Put around 1680 of these lines in a file test2.sql
insert into x_small values(&#039;a&#039;);
commit;
insert into x_small values(&#039;a&#039;);
commit;
insert into x_small values(&#039;a&#039;);
commit;
................
................


Put around 1680 of these lines in a file test3.sql
insert into x_big values(&#039;a&#039;);
commit;
insert into x_big values(&#039;a&#039;);
commit;
insert into x_big values(&#039;a&#039;);
commit;
................
................

run test2.sql &amp; test3.sql


sys@orcl&gt; select count(*) from x_small;

  COUNT(*)
----------
      1680

sys@orcl&gt; select count(*) from x_big;

  COUNT(*)
----------
      1680

select     owner, segment_name, segment_type, partition_name, tablespace_name,
   extent_id, file_id, block_id, blocks
from       dba_extents
where      segment_name in (&#039;X_SMALL&#039;,&#039;X_BIG&#039;)
order      by 1,2,4,5,6,7
/
                                                                                                              Start
                                Segment              Partition                                 Extent  File   Block
Owner      Segment Name         Type                 Name                Tablespace                No    No      No     Blocks
---------- -------------------- -------------------- ------------------- -------------------- ------- ----- ------- ----------
SYS        X_BIG                TABLE                                    DATA_BIG                   0     6   19921          8
SYS        X_BIG                TABLE                                    DATA_BIG                   1     6   19929          8
SYS        X_BIG                TABLE                                    DATA_BIG                   2     6   19937          8
SYS        X_BIG                TABLE                                    DATA_BIG                   3     6   19945          8

SYS        X_SMALL              TABLE                                    DATA_SMALL                 0     8      49          8
SYS        X_SMALL              TABLE                                    DATA_SMALL                 1     7      25          8
SYS        X_SMALL              TABLE                                    DATA_SMALL                 2     8      57          8
SYS        X_SMALL              TABLE                                    DATA_SMALL                 3     7      33          8

select     owner, segment_name, segment_type, partition_name, tablespace_name,
   extent_id, file_id, block_id, blocks
from       dba_extents
where      segment_name in (&#039;IX_SMALL&#039;,&#039;IX_BIG&#039;)
order      by 1,2,4,5,6,7

                                                                                                              Start
                                Segment              Partition                                 Extent  File   Block
Owner      Segment Name         Type                 Name                Tablespace                No    No      No     Blocks
---------- -------------------- -------------------- ------------------- -------------------- ------- ----- ------- ----------
SYS        IX_BIG               INDEX                                    USERS                      0     4      57          8
SYS        IX_BIG               INDEX                                    USERS                      1     4     105          8
SYS        IX_BIG               INDEX                                    USERS                      2     4     113          8
SYS        IX_BIG               INDEX                                    USERS                      3     4     121          8
SYS        IX_BIG               INDEX                                    USERS                      4     4     129          8

SYS        IX_SMALL             INDEX                                    USERS                      0     4      49          8
SYS        IX_SMALL             INDEX                                    USERS                      1     4      65          8
SYS        IX_SMALL             INDEX                                    USERS                      2     4      73          8
SYS        IX_SMALL             INDEX                                    USERS                      3     4      81          8
SYS        IX_SMALL             INDEX                                    USERS                      4     4      89          8
SYS        IX_SMALL             INDEX                                    USERS                      5     4      97          8


index_stats

NAME         HEIGHT     Blocks    LF_ROWS    LF_BLKS LF_ROWS_LEN    BR_ROWS MOST_REPEATED_KEY BTREE_SPACE USED_SPACE
-------- ---------- ---------- ---------- ---------- ----------- ---------- ----------------- ----------- ----------
IX_SMALL          2         48       1680         39      188160         38              1680      320032     192484
IX_BIG            2         40       1680         33      188160         32              1680      272032     191804


index tree dump

*****************************
Index tree dump for ix_small
*****************************

----- begin tree dump
branch: 0x1000034 16777268 (0: nrow: 39, level: 1)
   leaf: 0x1000038 16777272 (-1: nrow: 41 rrow: 41)
   leaf: 0x100004d 16777293 (0: nrow: 41 rrow: 41)
   leaf: 0x100004e 16777294 (1: nrow: 41 rrow: 41)
   leaf: 0x1000054 16777300 (2: nrow: 41 rrow: 41)
   leaf: 0x1000055 16777301 (3: nrow: 50 rrow: 50)
   leaf: 0x100004c 16777292 (4: nrow: 31 rrow: 31)
   leaf: 0x1000041 16777281 (5: nrow: 41 rrow: 41)
   leaf: 0x1000042 16777282 (6: nrow: 41 rrow: 41)
   leaf: 0x1000043 16777283 (7: nrow: 41 rrow: 41)
   leaf: 0x100004f 16777295 (8: nrow: 40 rrow: 40)
   leaf: 0x1000050 16777296 (9: nrow: 41 rrow: 41)
   leaf: 0x100004a 16777290 (10: nrow: 41 rrow: 41)
   leaf: 0x100004b 16777291 (11: nrow: 41 rrow: 41)
   leaf: 0x100005c 16777308 (12: nrow: 41 rrow: 41)
   leaf: 0x100005d 16777309 (13: nrow: 40 rrow: 40)
   leaf: 0x100005e 16777310 (14: nrow: 41 rrow: 41)
   leaf: 0x1000064 16777316 (15: nrow: 41 rrow: 41)
   leaf: 0x1000065 16777317 (16: nrow: 41 rrow: 41)
   leaf: 0x1000066 16777318 (17: nrow: 41 rrow: 41)
   leaf: 0x1000067 16777319 (18: nrow: 40 rrow: 40)
   leaf: 0x1000068 16777320 (19: nrow: 58 rrow: 58)
   leaf: 0x1000048 16777288 (20: nrow: 31 rrow: 31)
   leaf: 0x1000037 16777271 (21: nrow: 41 rrow: 41)
   leaf: 0x1000044 16777284 (22: nrow: 41 rrow: 41)
   leaf: 0x1000045 16777285 (23: nrow: 41 rrow: 41)
   leaf: 0x1000047 16777287 (24: nrow: 67 rrow: 67)
   leaf: 0x1000046 16777286 (25: nrow: 41 rrow: 41)
   leaf: 0x1000036 16777270 (26: nrow: 37 rrow: 37)
   leaf: 0x1000035 16777269 (27: nrow: 41 rrow: 41)
   leaf: 0x1000051 16777297 (28: nrow: 41 rrow: 41)
   leaf: 0x1000052 16777298 (29: nrow: 41 rrow: 41)
   leaf: 0x100005b 16777307 (30: nrow: 67 rrow: 67)
   leaf: 0x1000053 16777299 (31: nrow: 41 rrow: 41)
   leaf: 0x100005f 16777311 (32: nrow: 41 rrow: 41)
   leaf: 0x1000060 16777312 (33: nrow: 41 rrow: 41)
   leaf: 0x100005a 16777306 (34: nrow: 67 rrow: 67)
   leaf: 0x1000058 16777304 (35: nrow: 31 rrow: 31)
   leaf: 0x1000056 16777302 (36: nrow: 71 rrow: 71)
   leaf: 0x1000057 16777303 (37: nrow: 25 rrow: 25)
----- end tree dump


*****************************
Index tree dump for ix_big
*****************************


----- begin tree dump
branch: 0x100003c 16777276 (0: nrow: 33, level: 1)
   leaf: 0x1000040 16777280 (-1: nrow: 41 rrow: 41)
   leaf: 0x100003f 16777279 (0: nrow: 41 rrow: 41)
   leaf: 0x100006c 16777324 (1: nrow: 41 rrow: 41)
   leaf: 0x100006d 16777325 (2: nrow: 41 rrow: 41)
   leaf: 0x100006f 16777327 (3: nrow: 67 rrow: 67)
   leaf: 0x100006e 16777326 (4: nrow: 41 rrow: 41)
   leaf: 0x100003e 16777278 (5: nrow: 37 rrow: 37)
   leaf: 0x100003d 16777277 (6: nrow: 41 rrow: 41)
   leaf: 0x1000072 16777330 (7: nrow: 41 rrow: 41)
   leaf: 0x1000073 16777331 (8: nrow: 41 rrow: 41)
   leaf: 0x1000074 16777332 (9: nrow: 41 rrow: 41)
   leaf: 0x1000075 16777333 (10: nrow: 41 rrow: 41)
   leaf: 0x1000076 16777334 (11: nrow: 39 rrow: 39)
   leaf: 0x1000078 16777336 (12: nrow: 31 rrow: 31)
   leaf: 0x1000070 16777328 (13: nrow: 71 rrow: 71)
   leaf: 0x1000069 16777321 (14: nrow: 71 rrow: 71)
   leaf: 0x100006a 16777322 (15: nrow: 71 rrow: 71)
   leaf: 0x100006b 16777323 (16: nrow: 71 rrow: 71)
   leaf: 0x1000077 16777335 (17: nrow: 41 rrow: 41)
   leaf: 0x100007f 16777343 (18: nrow: 41 rrow: 41)
   leaf: 0x1000080 16777344 (19: nrow: 70 rrow: 70)
   leaf: 0x1000088 16777352 (20: nrow: 38 rrow: 38)
   leaf: 0x1000079 16777337 (21: nrow: 41 rrow: 41)
   leaf: 0x100007a 16777338 (22: nrow: 41 rrow: 41)
   leaf: 0x100007b 16777339 (23: nrow: 41 rrow: 41)
   leaf: 0x1000087 16777351 (24: nrow: 67 rrow: 67)
   leaf: 0x100007e 16777342 (25: nrow: 31 rrow: 31)
   leaf: 0x100007c 16777340 (26: nrow: 71 rrow: 71)
   leaf: 0x100007d 16777341 (27: nrow: 71 rrow: 71)
   leaf: 0x1000082 16777346 (28: nrow: 71 rrow: 71)
   leaf: 0x1000083 16777347 (29: nrow: 71 rrow: 71)
   leaf: 0x1000084 16777348 (30: nrow: 71 rrow: 71)
   leaf: 0x1000085 16777349 (31: nrow: 46 rrow: 46)
----- end tree dump

The rowid in the non-unique index, with shifting file#, caused more index leaf block splits in ix_small

regards
srivenu]]></description>
		<content:encoded><![CDATA[<p>Hi jonathan,<br />
I could think of a test case where an index could get bigger when created in a tablespace with more than 1 datafile vs creating it in a bigfile tablespace.</p>
<p>using 11.1.0.6.0 on windows xp x64</p>
<p>create bigfile tablespace DATA_BIG datafile &#8216;C:\ORADATA\ORCL\DATA_BIG01.DBF&#8217; size 512m;</p>
<p>create bigfile tablespace DATA_SMALL datafile &#8216;C:\ORADATA\ORCL\DATA_SMALL01.DBF&#8217; size 512m,  &#8216;C:\ORADATA\ORCL\DATA_SMALL02.DBF&#8217; size 512m;</p>
<p>drop table x_small<br />
/<br />
drop table x_big<br />
/<br />
create table x_small(c1 char(100)) tablespace data_small<br />
/<br />
create index ix_small on x_small(c1) tablespace users<br />
/<br />
create table x_big(c1 char(100)) tablespace data_big<br />
/<br />
create index ix_big on x_big(c1) tablespace users<br />
/</p>
<p>Now i allocate extents to X_SMALL across both the files</p>
<p>alter table x_small allocate extent (datafile &#8216;C:\ORADATA\ORCL\TEST01.DBF&#8217;);<br />
alter table x_small allocate extent (datafile &#8216;C:\ORADATA\ORCL\TEST02.DBF&#8217;);<br />
alter table x_small allocate extent (datafile &#8216;C:\ORADATA\ORCL\TEST01.DBF&#8217;);<br />
alter table x_small allocate extent (datafile &#8216;C:\ORADATA\ORCL\TEST02.DBF&#8217;);</p>
<p>Put around 1680 of these lines in a file test2.sql<br />
insert into x_small values(&#8216;a&#8217;);<br />
commit;<br />
insert into x_small values(&#8216;a&#8217;);<br />
commit;<br />
insert into x_small values(&#8216;a&#8217;);<br />
commit;<br />
&#8230;&#8230;&#8230;&#8230;&#8230;.<br />
&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>Put around 1680 of these lines in a file test3.sql<br />
insert into x_big values(&#8216;a&#8217;);<br />
commit;<br />
insert into x_big values(&#8216;a&#8217;);<br />
commit;<br />
insert into x_big values(&#8216;a&#8217;);<br />
commit;<br />
&#8230;&#8230;&#8230;&#8230;&#8230;.<br />
&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>run test2.sql &amp; test3.sql</p>
<p>sys@orcl&gt; select count(*) from x_small;</p>
<p>  COUNT(*)<br />
&#8212;&#8212;&#8212;-<br />
      1680</p>
<p>sys@orcl&gt; select count(*) from x_big;</p>
<p>  COUNT(*)<br />
&#8212;&#8212;&#8212;-<br />
      1680</p>
<p>select     owner, segment_name, segment_type, partition_name, tablespace_name,<br />
   extent_id, file_id, block_id, blocks<br />
from       dba_extents<br />
where      segment_name in (&#8216;X_SMALL&#8217;,'X_BIG&#8217;)<br />
order      by 1,2,4,5,6,7<br />
/<br />
                                                                                                              Start<br />
                                Segment              Partition                                 Extent  File   Block<br />
Owner      Segment Name         Type                 Name                Tablespace                No    No      No     Blocks<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;- &#8212;&#8211; &#8212;&#8212;- &#8212;&#8212;&#8212;-<br />
SYS        X_BIG                TABLE                                    DATA_BIG                   0     6   19921          8<br />
SYS        X_BIG                TABLE                                    DATA_BIG                   1     6   19929          8<br />
SYS        X_BIG                TABLE                                    DATA_BIG                   2     6   19937          8<br />
SYS        X_BIG                TABLE                                    DATA_BIG                   3     6   19945          8</p>
<p>SYS        X_SMALL              TABLE                                    DATA_SMALL                 0     8      49          8<br />
SYS        X_SMALL              TABLE                                    DATA_SMALL                 1     7      25          8<br />
SYS        X_SMALL              TABLE                                    DATA_SMALL                 2     8      57          8<br />
SYS        X_SMALL              TABLE                                    DATA_SMALL                 3     7      33          8</p>
<p>select     owner, segment_name, segment_type, partition_name, tablespace_name,<br />
   extent_id, file_id, block_id, blocks<br />
from       dba_extents<br />
where      segment_name in (&#8216;IX_SMALL&#8217;,'IX_BIG&#8217;)<br />
order      by 1,2,4,5,6,7</p>
<p>                                                                                                              Start<br />
                                Segment              Partition                                 Extent  File   Block<br />
Owner      Segment Name         Type                 Name                Tablespace                No    No      No     Blocks<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;- &#8212;&#8211; &#8212;&#8212;- &#8212;&#8212;&#8212;-<br />
SYS        IX_BIG               INDEX                                    USERS                      0     4      57          8<br />
SYS        IX_BIG               INDEX                                    USERS                      1     4     105          8<br />
SYS        IX_BIG               INDEX                                    USERS                      2     4     113          8<br />
SYS        IX_BIG               INDEX                                    USERS                      3     4     121          8<br />
SYS        IX_BIG               INDEX                                    USERS                      4     4     129          8</p>
<p>SYS        IX_SMALL             INDEX                                    USERS                      0     4      49          8<br />
SYS        IX_SMALL             INDEX                                    USERS                      1     4      65          8<br />
SYS        IX_SMALL             INDEX                                    USERS                      2     4      73          8<br />
SYS        IX_SMALL             INDEX                                    USERS                      3     4      81          8<br />
SYS        IX_SMALL             INDEX                                    USERS                      4     4      89          8<br />
SYS        IX_SMALL             INDEX                                    USERS                      5     4      97          8</p>
<p>index_stats</p>
<p>NAME         HEIGHT     Blocks    LF_ROWS    LF_BLKS LF_ROWS_LEN    BR_ROWS MOST_REPEATED_KEY BTREE_SPACE USED_SPACE<br />
&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;-<br />
IX_SMALL          2         48       1680         39      188160         38              1680      320032     192484<br />
IX_BIG            2         40       1680         33      188160         32              1680      272032     191804</p>
<p>index tree dump</p>
<p>*****************************<br />
Index tree dump for ix_small<br />
*****************************</p>
<p>&#8212;&#8211; begin tree dump<br />
branch: 0&#215;1000034 16777268 (0: nrow: 39, level: 1)<br />
   leaf: 0&#215;1000038 16777272 (-1: nrow: 41 rrow: 41)<br />
   leaf: 0x100004d 16777293 (0: nrow: 41 rrow: 41)<br />
   leaf: 0x100004e 16777294 (1: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000054 16777300 (2: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000055 16777301 (3: nrow: 50 rrow: 50)<br />
   leaf: 0x100004c 16777292 (4: nrow: 31 rrow: 31)<br />
   leaf: 0&#215;1000041 16777281 (5: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000042 16777282 (6: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000043 16777283 (7: nrow: 41 rrow: 41)<br />
   leaf: 0x100004f 16777295 (8: nrow: 40 rrow: 40)<br />
   leaf: 0&#215;1000050 16777296 (9: nrow: 41 rrow: 41)<br />
   leaf: 0x100004a 16777290 (10: nrow: 41 rrow: 41)<br />
   leaf: 0x100004b 16777291 (11: nrow: 41 rrow: 41)<br />
   leaf: 0x100005c 16777308 (12: nrow: 41 rrow: 41)<br />
   leaf: 0x100005d 16777309 (13: nrow: 40 rrow: 40)<br />
   leaf: 0x100005e 16777310 (14: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000064 16777316 (15: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000065 16777317 (16: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000066 16777318 (17: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000067 16777319 (18: nrow: 40 rrow: 40)<br />
   leaf: 0&#215;1000068 16777320 (19: nrow: 58 rrow: 58)<br />
   leaf: 0&#215;1000048 16777288 (20: nrow: 31 rrow: 31)<br />
   leaf: 0&#215;1000037 16777271 (21: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000044 16777284 (22: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000045 16777285 (23: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000047 16777287 (24: nrow: 67 rrow: 67)<br />
   leaf: 0&#215;1000046 16777286 (25: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000036 16777270 (26: nrow: 37 rrow: 37)<br />
   leaf: 0&#215;1000035 16777269 (27: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000051 16777297 (28: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000052 16777298 (29: nrow: 41 rrow: 41)<br />
   leaf: 0x100005b 16777307 (30: nrow: 67 rrow: 67)<br />
   leaf: 0&#215;1000053 16777299 (31: nrow: 41 rrow: 41)<br />
   leaf: 0x100005f 16777311 (32: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000060 16777312 (33: nrow: 41 rrow: 41)<br />
   leaf: 0x100005a 16777306 (34: nrow: 67 rrow: 67)<br />
   leaf: 0&#215;1000058 16777304 (35: nrow: 31 rrow: 31)<br />
   leaf: 0&#215;1000056 16777302 (36: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000057 16777303 (37: nrow: 25 rrow: 25)<br />
&#8212;&#8211; end tree dump</p>
<p>*****************************<br />
Index tree dump for ix_big<br />
*****************************</p>
<p>&#8212;&#8211; begin tree dump<br />
branch: 0x100003c 16777276 (0: nrow: 33, level: 1)<br />
   leaf: 0&#215;1000040 16777280 (-1: nrow: 41 rrow: 41)<br />
   leaf: 0x100003f 16777279 (0: nrow: 41 rrow: 41)<br />
   leaf: 0x100006c 16777324 (1: nrow: 41 rrow: 41)<br />
   leaf: 0x100006d 16777325 (2: nrow: 41 rrow: 41)<br />
   leaf: 0x100006f 16777327 (3: nrow: 67 rrow: 67)<br />
   leaf: 0x100006e 16777326 (4: nrow: 41 rrow: 41)<br />
   leaf: 0x100003e 16777278 (5: nrow: 37 rrow: 37)<br />
   leaf: 0x100003d 16777277 (6: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000072 16777330 (7: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000073 16777331 (8: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000074 16777332 (9: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000075 16777333 (10: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000076 16777334 (11: nrow: 39 rrow: 39)<br />
   leaf: 0&#215;1000078 16777336 (12: nrow: 31 rrow: 31)<br />
   leaf: 0&#215;1000070 16777328 (13: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000069 16777321 (14: nrow: 71 rrow: 71)<br />
   leaf: 0x100006a 16777322 (15: nrow: 71 rrow: 71)<br />
   leaf: 0x100006b 16777323 (16: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000077 16777335 (17: nrow: 41 rrow: 41)<br />
   leaf: 0x100007f 16777343 (18: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000080 16777344 (19: nrow: 70 rrow: 70)<br />
   leaf: 0&#215;1000088 16777352 (20: nrow: 38 rrow: 38)<br />
   leaf: 0&#215;1000079 16777337 (21: nrow: 41 rrow: 41)<br />
   leaf: 0x100007a 16777338 (22: nrow: 41 rrow: 41)<br />
   leaf: 0x100007b 16777339 (23: nrow: 41 rrow: 41)<br />
   leaf: 0&#215;1000087 16777351 (24: nrow: 67 rrow: 67)<br />
   leaf: 0x100007e 16777342 (25: nrow: 31 rrow: 31)<br />
   leaf: 0x100007c 16777340 (26: nrow: 71 rrow: 71)<br />
   leaf: 0x100007d 16777341 (27: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000082 16777346 (28: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000083 16777347 (29: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000084 16777348 (30: nrow: 71 rrow: 71)<br />
   leaf: 0&#215;1000085 16777349 (31: nrow: 46 rrow: 46)<br />
&#8212;&#8211; end tree dump</p>
<p>The rowid in the non-unique index, with shifting file#, caused more index leaf block splits in ix_small</p>
<p>regards<br />
srivenu</p>
]]></content:encoded>
	</item>
</channel>
</rss>
