A telephone directory without an index. Can you imagine, what will happen in such a situation. It will take hours to search a
name in the directory. This is a very simple example of importance and use of index. Similarly an index on a table with millions of data
is helpful in reducing the search time.
An index is a database object that contains an entry for each value that appears in the indexed column(s) of the table or cluster and
provides direct, fast access to rows.
A normal index in Oracle database is created using B- Tree(balanced tree) structure. While there can be different types of indexes that
can be created in Oracle, the one's that are mainly used in data warehousing are normal and bitmap indexes.
Now before going forward, let us get a clear idea of how an index works in Oracle.
In Oracle, everything accessed is in terms of block.
What is a block?
Oracle stores data in blocks or logical blocks. One data block corresponds to a specific number of bytes of physical database space
on disk.It is the smallest unit of disk that oracle reads. As rows in a table are very small, so many rows can fit into
a block in oracle.
The size of a block in Oracle can be configured but generally is of size 4kb, 8kb,16kb, 32kb.
What is a B-Tree structure?
A B Tree or a balanced tree is a database tree structure, in which each node can contain multiple childs.
If d is the depth of the tree, then usually the number of childs vary between d and 2d. If a node starts filling
then it is split to balance nodes.
In Oracle, a B - Tree contains database blocks as nodes in the tree.
How an index works?
For example, in a telephone directory you want to search for a name James. You will move to index and see that
page 5 starts with Jack and page 10 starts with Jaqueline. So James would be some where in between page 5 and
page 10.
Now on page 5, you have another sub index containing entries for names between Jack and Japper which are in pages 5,6,7,8,9.
From this index you get that page 8 starts with Jame and ends with Jamy. So now you know that James would be in this
page only. Now you can easily search for james in this page.
Similarly in a b tree index, each child blocks gives us next block to search for a particular row in a table. And finally
leaf node or block gives us the required row.
Eg.
In main index,
Page 5 starts with Jack.
Page 10 starts with Jaqueline.
In Page 5 sub index,
Page 5 starts with Jack and page 9 starts with Japper.
Page 8 starts with jame and ends with Jamy.
So Page 8 is the target page.
Subscribe to:
Post Comments (Atom)
Oracle analytics - Different pricing schems
OBIEE on premise Licensing: Component based licensing: The pricing is based on the user base or volume(COGS/revenue). It is a buy as ...
-
Building a sample map in informatica is not a very difficult task.You just need is a basic knowledge about informatica client tools and ...
-
Informatica powercenter v8+ gives us the power to keep session logs for more than one session runs. This feature of Informatica helps in saf...
No comments:
Post a Comment