SlideShare a Scribd company logo
By: Zainab Almugbel
1
outline
 introduction
 Indexes as Access Paths
 Types of Single-Level Indexes
 Primary Index
 Clustering Index
 Secondary Index
 Multi-Level Indexes
2
Index file definition
Index file structure
3
Indexes as Access Paths
 A single-level index is an auxiliary file that makes it
more efficient to search for a record in the data file.
 The index is usually specified on one field of the file
(although it could be specified on several fields)
 One form of an index is a file of entries <field value,
pointer to record>, which is ordered by field value
 The index is called an access path on the field.
4
Indexes as Access Paths (cont.)
 The index file usually occupies considerably less disk
blocks than the data file because its entries are much
smaller
 A binary search on the index yields a pointer to the file
record
 Indexes can also be characterized as dense or sparse
 A dense index has an index entry for every search key value
(and hence every record) in the data file.
 A sparse (or nondense) index, on the other hand, has index
entries for only some of the search values
5
Review
 True or False
 The index file usually occupies considerably more
disk blocks
 A dense index has not an index entry for every
search key value
 The following index represent a sparse index
index Block contains data file
6
Exercise
 Example: Given the following data file EMPLOYEE(NAME, SSN,
ADDRESS, JOB, SAL, ... )
 Suppose that:
 record size R=150 bytes block size B=512 bytes r=30000
records
 Then, we get:
 blocking factor Bfr= B div R= 512 div 150= 3 records/block
 number of file blocks b= (r/Bfr)= (30000/3)= 10000 blocks
 For an index on the SSN field, assume the field size VSSN=9 bytes,
assume the record pointer size PR=7 bytes. Then:
 index entry size RI=(VSSN+ PR)=(9+7)=16 bytes
 index blocking factor BfrI= B div RI= 512 div 16= 32 entries/block
 number of index blocks b= (r/ BfrI)= (30000/32)= 938 blocks
 binary search needs log2bI= log2938= 10 block accesses
 This is compared to an average linear search cost of:
 (b/2)= 30000/2= 15000 block accesses
 If the file records are ordered, the binary search cost would be:
 log2b= log230000= 15 block accesses
7
Primary Index
Clustering Index
Secondary Index
8
Types of Single-Level Indexes
Primary Index Clustering Index Secondary Index
ordered file ordered file ordered file
a secondary means of accessing a file
Data file is ordered
on a key field
(distinct value for
each record)
Data file is ordered on a
non-key field (no distinct
value for each record)
Data file is ordered may be on
candidate key has a unique value or a
non-key with duplicate values
file content
<key field, pointer>
one index entry for
each disk block.
key field value is
the first record in
the block, which is
called the block
anchor
file content
<key field, pointer>
one index entry for each
distinct value of the field;
the index entry points to
the first data block that
contains records with that
field value
file content
<key field, pointer>
The index is an ordered file with two
fields:
1- field value.
2- it is either a block pointer or a record
pointer.
nondense (sparse)
index
nondense (sparse) index If key, dense. If non key, dense or
sparse index
9
Review
 On the next slides, determine the type of single
level index
10
11
12
13
A Two-Level Primary Index
Dynamic Multilevel Indexes Using B-Trees and B+-Trees
14
Multi-Level Indexes
 Because a single-level index is an ordered file, we can create
a primary index to the index itself;
 In this case, the original index file is called the first-level
index and the index to the index is called the second-level
index.
 We can repeat the process, creating a third, fourth, ..., top
level until all entries of the top level fit in one disk block
 A multi-level index can be created for any type of first-level
index (primary, secondary, clustering) as long as the first-
level index consists of more than one disk block
15
A Two-Level
Primary Index
16
Multi-Level Indexes
 Such a multi-level index is a form of search tree
 However, insertion and deletion of new index entries is a
severe problem because every level of the index is an
ordered file.
17
Multi-Level Indexes (Cont’d.)
 Tree structure
18
A Node in a Search Tree with Pointers to Subtrees
Below It
19
Dynamic Multilevel Indexes Using B-Trees and B+-
Trees
 Most multi-level indexes use B-tree or B+-tree data
structures because of the insertion and deletion problem
 This leaves space in each tree node (disk block) to allow for
new index entries
 These data structures are variations of search trees that
allow efficient insertion and deletion of new search values.
 In B-Tree and B+-Tree data structures, each node
corresponds to a disk block
 Each node is kept between half-full and completely full
20
Dynamic Multilevel Indexes Using B-Trees and B+-
Trees (cont.)
 An insertion into a node that is not full is quite
efficient
 If a node is full the insertion causes a split into two
nodes
 Splitting may propagate to other tree levels
 A deletion is quite efficient if a node does not become
less than half full
 If a deletion causes a node to become less than half
full, it must be merged with neighboring nodes
21
Difference between B-tree and B+-tree
 In a B-tree, pointers to data records exist at all levels of
the tree
 In a B+-tree, all pointers to data records exists at the
leaf-level nodes
 A B+-tree can have less levels (or higher capacity of
search values) than the corresponding B-tree
22
Similarities between B-tree and B+-tree
 All leaf nodes at the same level
 Nodes contents not less than the half
Example
 Using a B-tree index of order p = 3. Insert the
following values in the order 8, 5, 1, 7, 3, 12, 9, 6.
23
Employee id name salary department
8 Saleh 10000 1
5 Ahmed 20000 1
1 Jasem 30000 2
7 Nader 15000 2
3 Saleh 13000 3
12 Waleed 8000 3
9 Salim 11000 4
6 Raed 8000 5
B-tree Structures
24
The Nodes of a B+-tree
25
Example
 Using a B+-tree index of order p = 3, pleaf=2.
 Insert the following values in the order 8, 5, 1, 7, 3, 12,
9, 6.
26
Employee
id
name salary departme
nt
8 Saleh 10000 1
5 Ahmed 20000 1
1 Jasem 30000 2
7 Nader 15000 2
3 Saleh 13000 3
12 Waleed 8000 3
9 Salim 11000 4
6 Raed 8000 5
27
Example
 Given a B+-tree index of order p = 3, pleaf=2.
Delete the nodes, 5,12,9
28
29
Summary
 Types of Single-level Ordered Indexes
 Primary Indexes
 Clustering Indexes
 Secondary Indexes
 Multilevel Indexes
 Dynamic Multilevel Indexes Using B-Trees and B+-
Trees
30

More Related Content

PPTX
Sorting Algorithms
PPTX
DBMS: Types of keys
PPT
11. Storage and File Structure in DBMS
PPT
Abstract data types
PPT
Sql DML
PPTX
2 phase locking protocol DBMS
PPTX
Key and its different types
PPTX
Abstract Data Types
Sorting Algorithms
DBMS: Types of keys
11. Storage and File Structure in DBMS
Abstract data types
Sql DML
2 phase locking protocol DBMS
Key and its different types
Abstract Data Types

What's hot (20)

PPT
Disk scheduling
PPT
12. Indexing and Hashing in DBMS
PPTX
FUNCTION DEPENDENCY AND TYPES & EXAMPLE
PPTX
PDF
Database Normalization
PPT
Databases: Normalisation
PPTX
Advantages of DBMS
PPTX
Nested queries in database
PPT
1. Introduction to DBMS
PPT
17. Recovery System in DBMS
PPTX
Unit I Database concepts - RDBMS & ORACLE
PPT
File organization and indexing
PPTX
Integrity Constraints
PDF
Symbol table in compiler Design
PPTX
Normalization in DBMS
PPT
File organization 1
PPTX
Acid properties
PPTX
Introduction to data structure ppt
PPTX
Binary Search Tree
PDF
Algorithms Lecture 4: Sorting Algorithms I
Disk scheduling
12. Indexing and Hashing in DBMS
FUNCTION DEPENDENCY AND TYPES & EXAMPLE
Database Normalization
Databases: Normalisation
Advantages of DBMS
Nested queries in database
1. Introduction to DBMS
17. Recovery System in DBMS
Unit I Database concepts - RDBMS & ORACLE
File organization and indexing
Integrity Constraints
Symbol table in compiler Design
Normalization in DBMS
File organization 1
Acid properties
Introduction to data structure ppt
Binary Search Tree
Algorithms Lecture 4: Sorting Algorithms I
Ad

Viewers also liked (20)

PPT
Indexing Data Structure
PDF
Indexing and-hashing
PPT
File structures
PPTX
CS 542 Database Index Structures
PPTX
Introduction to transaction processing concepts and theory
PPTX
Ch 17 disk storage, basic files structure, and hashing
PPTX
Database index
PPTX
Indexers in C#
PPTX
Indexing Techniques: Their Usage in Search Engines for Information Retrieval
PPTX
Database indexing techniques
PPT
B trees dbms
PPTX
Introduction to indexing (presentation1)
PPT
Data indexing presentation
PPT
Warehouse components
DOCX
1. indexing and abstracting
PPT
FILE STRUCTURE IN DBMS
PPTX
Introduction to indexing
PPT
13. Query Processing in DBMS
PDF
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
PPT
Indexing
Indexing Data Structure
Indexing and-hashing
File structures
CS 542 Database Index Structures
Introduction to transaction processing concepts and theory
Ch 17 disk storage, basic files structure, and hashing
Database index
Indexers in C#
Indexing Techniques: Their Usage in Search Engines for Information Retrieval
Database indexing techniques
B trees dbms
Introduction to indexing (presentation1)
Data indexing presentation
Warehouse components
1. indexing and abstracting
FILE STRUCTURE IN DBMS
Introduction to indexing
13. Query Processing in DBMS
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
Indexing
Ad

Similar to Indexing structure for files (20)

PPTX
Adbms 22 dynamic multi level index using b and b+ tree
PPT
Chapter14.ppt
PDF
DOC-20240804-WA0006..pdforaclesqlindexing
PPT
11885558.ppt
PPT
UNIT-6.ppt discusses about indexing aand hashing techniques
PPTX
Chapter17.pptx data base management sysytetem
PPT
Indexing and Hashing
PDF
indexing and hashing
PPT
Ardbms
PPTX
DBMS-Unit5-PPT.pptx important for revision
PPTX
DB LECTURE 4 INDEXINGS PPT NOTES.pptx
PDF
DBMS 8 | Memory Hierarchy and Indexing
PPTX
index examples.pptx
PPTX
index examples.pptx
PPTX
Index Structures.pptx
PPT
Indexing and hashing
PDF
Access Methods - Lecture 9 - Introduction to Databases (1007156ANR)
PPT
Database Management Systems full lecture
PPT
Intro to Data warehousing lecture 11
PPT
Intro to Data warehousing lecture 14
Adbms 22 dynamic multi level index using b and b+ tree
Chapter14.ppt
DOC-20240804-WA0006..pdforaclesqlindexing
11885558.ppt
UNIT-6.ppt discusses about indexing aand hashing techniques
Chapter17.pptx data base management sysytetem
Indexing and Hashing
indexing and hashing
Ardbms
DBMS-Unit5-PPT.pptx important for revision
DB LECTURE 4 INDEXINGS PPT NOTES.pptx
DBMS 8 | Memory Hierarchy and Indexing
index examples.pptx
index examples.pptx
Index Structures.pptx
Indexing and hashing
Access Methods - Lecture 9 - Introduction to Databases (1007156ANR)
Database Management Systems full lecture
Intro to Data warehousing lecture 11
Intro to Data warehousing lecture 14

More from Zainab Almugbel (12)

PDF
مسألة الألوهية في الإسلام والمسيحية
PDF
Ontology based approach for annotating a corpus of computer science abstracts
PPT
Lesson Sample Fourth Elementary Grade English Course
PDF
Representing, Querying, and Visualizing Health-Insurance Knowledge in a Cost-...
PPT
Preventive Maintenance
PPT
how hardware and software works together
PPT
computer maintenance
PDF
Introduction to Network
PPTX
Grailog Use Case
PPTX
An Introductory Presentation Sample for the First Week of the Semester
PPT
Database concepts and Archeticture Ch2 with in class Activities
PPTX
Graph Database
مسألة الألوهية في الإسلام والمسيحية
Ontology based approach for annotating a corpus of computer science abstracts
Lesson Sample Fourth Elementary Grade English Course
Representing, Querying, and Visualizing Health-Insurance Knowledge in a Cost-...
Preventive Maintenance
how hardware and software works together
computer maintenance
Introduction to Network
Grailog Use Case
An Introductory Presentation Sample for the First Week of the Semester
Database concepts and Archeticture Ch2 with in class Activities
Graph Database

Recently uploaded (20)

PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Sports Quiz easy sports quiz sports quiz
PDF
Complications of Minimal Access Surgery at WLH
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
GDM (1) (1).pptx small presentation for students
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
01-Introduction-to-Information-Management.pdf
Final Presentation General Medicine 03-08-2024.pptx
VCE English Exam - Section C Student Revision Booklet
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Anesthesia in Laparoscopic Surgery in India
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
human mycosis Human fungal infections are called human mycosis..pptx
Sports Quiz easy sports quiz sports quiz
Complications of Minimal Access Surgery at WLH
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
STATICS OF THE RIGID BODIES Hibbelers.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Module 4: Burden of Disease Tutorial Slides S2 2025
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
O5-L3 Freight Transport Ops (International) V1.pdf
GDM (1) (1).pptx small presentation for students

Indexing structure for files

  • 2. outline  introduction  Indexes as Access Paths  Types of Single-Level Indexes  Primary Index  Clustering Index  Secondary Index  Multi-Level Indexes 2
  • 3. Index file definition Index file structure 3
  • 4. Indexes as Access Paths  A single-level index is an auxiliary file that makes it more efficient to search for a record in the data file.  The index is usually specified on one field of the file (although it could be specified on several fields)  One form of an index is a file of entries <field value, pointer to record>, which is ordered by field value  The index is called an access path on the field. 4
  • 5. Indexes as Access Paths (cont.)  The index file usually occupies considerably less disk blocks than the data file because its entries are much smaller  A binary search on the index yields a pointer to the file record  Indexes can also be characterized as dense or sparse  A dense index has an index entry for every search key value (and hence every record) in the data file.  A sparse (or nondense) index, on the other hand, has index entries for only some of the search values 5
  • 6. Review  True or False  The index file usually occupies considerably more disk blocks  A dense index has not an index entry for every search key value  The following index represent a sparse index index Block contains data file 6
  • 7. Exercise  Example: Given the following data file EMPLOYEE(NAME, SSN, ADDRESS, JOB, SAL, ... )  Suppose that:  record size R=150 bytes block size B=512 bytes r=30000 records  Then, we get:  blocking factor Bfr= B div R= 512 div 150= 3 records/block  number of file blocks b= (r/Bfr)= (30000/3)= 10000 blocks  For an index on the SSN field, assume the field size VSSN=9 bytes, assume the record pointer size PR=7 bytes. Then:  index entry size RI=(VSSN+ PR)=(9+7)=16 bytes  index blocking factor BfrI= B div RI= 512 div 16= 32 entries/block  number of index blocks b= (r/ BfrI)= (30000/32)= 938 blocks  binary search needs log2bI= log2938= 10 block accesses  This is compared to an average linear search cost of:  (b/2)= 30000/2= 15000 block accesses  If the file records are ordered, the binary search cost would be:  log2b= log230000= 15 block accesses 7
  • 9. Types of Single-Level Indexes Primary Index Clustering Index Secondary Index ordered file ordered file ordered file a secondary means of accessing a file Data file is ordered on a key field (distinct value for each record) Data file is ordered on a non-key field (no distinct value for each record) Data file is ordered may be on candidate key has a unique value or a non-key with duplicate values file content <key field, pointer> one index entry for each disk block. key field value is the first record in the block, which is called the block anchor file content <key field, pointer> one index entry for each distinct value of the field; the index entry points to the first data block that contains records with that field value file content <key field, pointer> The index is an ordered file with two fields: 1- field value. 2- it is either a block pointer or a record pointer. nondense (sparse) index nondense (sparse) index If key, dense. If non key, dense or sparse index 9
  • 10. Review  On the next slides, determine the type of single level index 10
  • 11. 11
  • 12. 12
  • 13. 13
  • 14. A Two-Level Primary Index Dynamic Multilevel Indexes Using B-Trees and B+-Trees 14
  • 15. Multi-Level Indexes  Because a single-level index is an ordered file, we can create a primary index to the index itself;  In this case, the original index file is called the first-level index and the index to the index is called the second-level index.  We can repeat the process, creating a third, fourth, ..., top level until all entries of the top level fit in one disk block  A multi-level index can be created for any type of first-level index (primary, secondary, clustering) as long as the first- level index consists of more than one disk block 15
  • 17. Multi-Level Indexes  Such a multi-level index is a form of search tree  However, insertion and deletion of new index entries is a severe problem because every level of the index is an ordered file. 17
  • 19. A Node in a Search Tree with Pointers to Subtrees Below It 19
  • 20. Dynamic Multilevel Indexes Using B-Trees and B+- Trees  Most multi-level indexes use B-tree or B+-tree data structures because of the insertion and deletion problem  This leaves space in each tree node (disk block) to allow for new index entries  These data structures are variations of search trees that allow efficient insertion and deletion of new search values.  In B-Tree and B+-Tree data structures, each node corresponds to a disk block  Each node is kept between half-full and completely full 20
  • 21. Dynamic Multilevel Indexes Using B-Trees and B+- Trees (cont.)  An insertion into a node that is not full is quite efficient  If a node is full the insertion causes a split into two nodes  Splitting may propagate to other tree levels  A deletion is quite efficient if a node does not become less than half full  If a deletion causes a node to become less than half full, it must be merged with neighboring nodes 21
  • 22. Difference between B-tree and B+-tree  In a B-tree, pointers to data records exist at all levels of the tree  In a B+-tree, all pointers to data records exists at the leaf-level nodes  A B+-tree can have less levels (or higher capacity of search values) than the corresponding B-tree 22 Similarities between B-tree and B+-tree  All leaf nodes at the same level  Nodes contents not less than the half
  • 23. Example  Using a B-tree index of order p = 3. Insert the following values in the order 8, 5, 1, 7, 3, 12, 9, 6. 23 Employee id name salary department 8 Saleh 10000 1 5 Ahmed 20000 1 1 Jasem 30000 2 7 Nader 15000 2 3 Saleh 13000 3 12 Waleed 8000 3 9 Salim 11000 4 6 Raed 8000 5
  • 25. The Nodes of a B+-tree 25
  • 26. Example  Using a B+-tree index of order p = 3, pleaf=2.  Insert the following values in the order 8, 5, 1, 7, 3, 12, 9, 6. 26 Employee id name salary departme nt 8 Saleh 10000 1 5 Ahmed 20000 1 1 Jasem 30000 2 7 Nader 15000 2 3 Saleh 13000 3 12 Waleed 8000 3 9 Salim 11000 4 6 Raed 8000 5
  • 27. 27
  • 28. Example  Given a B+-tree index of order p = 3, pleaf=2. Delete the nodes, 5,12,9 28
  • 29. 29
  • 30. Summary  Types of Single-level Ordered Indexes  Primary Indexes  Clustering Indexes  Secondary Indexes  Multilevel Indexes  Dynamic Multilevel Indexes Using B-Trees and B+- Trees 30