Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System...

36
Indexing and Hashing Department of Computer Science and Engineering Indian Institute of Technology Ropar Narayanan (CK) Chatapuram Krishnan CSL 451 Introduction to Database Systems

Transcript of Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System...

Page 1: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

Indexing and Hashing

Department of Computer Science and EngineeringIndian Institute of Technology Ropar

Narayanan (CK) Chatapuram Krishnan!

CSL 451 Introduction to Database Systems

Page 2: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

Summary•  Access types•  Access time•  Insertion time•  Deletion time•  Space overhead•  Search key•  Clustering index

–  primary indices•  Nonclustering indices

–  secondary indices•  index-sequential files•  Dense and Sparse indices

•  Multilevel indices•  B+-Tree Index Files

–  Balanced tree–  ceil(n/2) – n number of

children for a nonleaf node.•  structure of a B+ tree•  queries•  insertion•  deletion

•  B+-Tree Extensions–  file organization–  indexing strings

•  prefix compression–  B tree

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 2!

Page 3: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.1 Indices speed query processing, but it is usually a bad idea to create indices on every attribute, and every combination of attributes, that is a potential search key. Explain why?

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 3!

Page 4: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.2 Is it possible in general to have two clustering indices on the same relation for different search keys? Explain?

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 4!

Page 5: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.15 When is it preferable to use a dense index rather than a sparse index? Explain your answer.

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 5!

Page 6: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.16 What is the difference between a clustering index and a secondary index?

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 6!

Page 7: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.3.a Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of pointers that will fit in one node to be 4.

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 7!

2 3 5

2 3 5 5 7

5

2 3 5 7 11

5

2 3 5 7

5 11

11 17

2 3 5 7

5 11

11 17 19

2 3 5 7

5 11 19

11 17 19 23

2 3 5 7

5 11 19

11 17 19 23 29

Page 8: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.3.a Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of pointers that will fit in one node to be 4.

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 8!

2 3 5 7

5 11 19

11 17 19 23 29

19 23

29 31

Page 9: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.3.a Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of pointers that will fit in one node to be 4.

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 9!

2 3 5 7

5 11 19

11 17 19 23 29

2 3 5 7

5 11

11 17 19 23 29 31

29

19

Page 10: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.3.b Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of pointers that will fit in one node to be 6.

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 10!

2 3 5 7 11 17 19 23 29 31

7 19

Page 11: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.17 For the B+-tree show the steps involved in the following queriesa.  find records with a search-key value of 11b.  find records with a search-key value between 7 and 17,

inclusive.

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 11!

2 3 5 7

5 11

11 17 19 23 29 31

29

19

Page 12: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.4 Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of points that will fit in one node to be 4. Show the form of the tree aftera.  insert 9

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 12!

2 3 5 7

5 11

11 17 19 23 29 31

29

19

2 3 5 7 9

5 11

11 17 19 23 29 31

29

19

Page 13: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.4 Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of points that will fit in one node to be 4. Show the form of the tree afterb.  insert 10

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 13!

2 3 5 7 9

5 11

11 17 19 23 29 31

29

19

2 3 5 7

5 9 11

11 17 19 23 29 31

29

19

9 10

Page 14: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.4 Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of points that will fit in one node to be 4. Show the form of the tree afterc.  insert 8

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 14!

2 3 5 7

5 9 11

11 17 19 23 29 31

29

19

9 10

2 3 5 7 8

5 9 11

11 17 19 23 29 31

29

19

9 10

Page 15: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.4 Construct a B+ -tree for the following set of key values:(2, 3, 5, 7, 11, 17, 19, 23, 29, 31)Assume that the tree is initially empty and values are added in ascending order. Let the number of points that will fit in one node to be 4. Show the form of the tree afterd.  delete 23

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 15!

2 3 5 7 8

5 9 11

11 17 19 23 29 31

29

19

9 10

2 3 5 7 8

5 9

9 10 11 17 19 29 31

19

11

Page 16: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

11.12 What would the occupancy of each leaf node of a B+-tree be, if index entries are inserted in sorted order? Explain why?

30/03/15! Department of Computer Science and Engineering !Indian Institute of Technology Ropar! 16!

Page 17: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.17Database System Concepts - 6th Edition

Static Hashing

■  A bucket is a unit of storage containing one or more records (a bucket is typically a disk block).

■  In a hash file organization we obtain the bucket of a record directly from its search-key value using a hash function.

■  Hash function h is a function from the set of all search-key values K to the set of all bucket addresses B.

■  Hash function is used to locate records for access, insertion as well as deletion.

■  Records with different search-key values may be mapped to the same bucket; thus entire bucket has to be searched sequentially to locate a record.

Page 18: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.18Database System Concepts - 6th Edition

Example of Hash File Organization

■  There are 10 buckets,■  The binary representation of the ith character is assumed to be the

integer i.■  The hash function returns the sum of the binary representations of

the characters modulo 10●  E.g. h(Music) = 1 h(History) = 2

h(Physics) = 3 h(Elec. Eng.) = 3

Hash file organization of instructor file, using dept_name as key (See figure in next slide.)

Page 19: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.19Database System Concepts - 6th Edition

Example of Hash File Organization

Hash file organization of instructor file, using dept_name as key (see previous slide for details).

bucket 0

bucket 1

bucket 2

bucket 3

bucket 4

bucket 5

bucket 6

bucket 7

45565

15151 Mozart Music 40000

80000Wu12121 Finance 90000

76543 FinanceSingh

10101 Comp. Sci.SrinivasanKatz Comp. Sci. 75000

92000

650003234358583

El SaidCalifieri

HistoryHistory

8000060000

EinsteinGoldKim

222223345698345

PhysicsPhysicsElec. Eng.

950008700080000

Brandt83821 Comp. Sci.

76766 Crick Biology 72000

Page 20: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.20Database System Concepts - 6th Edition

Hash Functions

■  Worst hash function maps all search-key values to the same bucket; this makes access time proportional to the number of search-key values in the file.

■  An ideal hash function is uniform, i.e., each bucket is assigned the same number of search-key values from the set of all possible values.

■  Ideal hash function is random, so each bucket will have the same number of records assigned to it irrespective of the actual distribution of search-key values in the file.

■  Typical hash functions perform computation on the internal binary representation of the search-key. ●  For example, for a string search-key, the binary representations of

all the characters in the string could be added and the sum modulo the number of buckets could be returned. .

Page 21: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.21Database System Concepts - 6th Edition

Handling of Bucket Overflows

■  Bucket overflow can occur because of ●  Insufficient buckets ●  Skew in distribution of records. This can occur due to two

reasons:! multiple records have same search-key value! chosen hash function produces non-uniform distribution of key

values■  Although the probability of bucket overflow can be reduced, it cannot

be eliminated; it is handled by using overflow buckets.

Page 22: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.22Database System Concepts - 6th Edition

Handling of Bucket Overflows (Cont.)

■  Overflow chaining – the overflow buckets of a given bucket are chained together in a linked list.

■  Above scheme is called closed hashing. ●  An alternative, called open hashing, which does not use overflow

buckets, is not suitable for database applications.

overflow buckets for bucket 1

bucket 0

bucket 1

bucket 2

bucket 3

Page 23: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.23Database System Concepts - 6th Edition

Hash Indices

■  Hashing can be used not only for file organization, but also for index-structure creation.

■  A hash index organizes the search keys, with their associated record pointers, into a hash file structure.

■  Strictly speaking, hash indices are always secondary indices ●  if the file itself is organized using hashing, a separate primary

hash index on it using the same search-key is unnecessary. ●  However, we use the term hash index to refer to both secondary

index structures and hash organized files.

Page 24: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.24Database System Concepts - 6th Edition

Example of Hash Indexbucket 0

bucket 1

bucket 2

bucket 3

bucket 4

bucket 5

bucket 6

76766

4556576543

10101

1515133456

58583

83821

22222

98345

bucket 71212132343

76766 Crick

76543 Singh32343 El Said58583 Califieri15151 Mozart22222 Einstein33465 Gold

10101 Srinivasan45565 Katz83821 Brandt98345 Kim12121 Wu

Biology

Physics

FinanceHistoryHistoryMusic

Physics

Comp. Sci.Comp. Sci.Comp. Sci.Elec. Eng.Finance

72000

800006000062000400009500087000

6500075000920008000090000

hash index on instructor, on attribute ID

Page 25: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.25Database System Concepts - 6th Edition

Deficiencies of Static Hashing

■  In static hashing, function h maps search-key values to a fixed set of B of bucket addresses. Databases grow or shrink with time. ●  If initial number of buckets is too small, and file grows, performance

will degrade due to too much overflows.●  If space is allocated for anticipated growth, a significant amount of

space will be wasted initially (and buckets will be underfull).●  If database shrinks, again space will be wasted.

■  One solution: periodic re-organization of the file with a new hash function●  Expensive, disrupts normal operations

■  Better solution: allow the number of buckets to be modified dynamically.

Page 26: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.26Database System Concepts - 6th Edition

Dynamic Hashing

■  Good for database that grows and shrinks in size■  Allows the hash function to be modified dynamically■  Extendable hashing – one form of dynamic hashing

●  Hash function generates values over a large range — typically b-bit integers, with b = 32.

●  At any time use only a prefix of the hash function to index into a table of bucket addresses.

●  Let the length of the prefix be i bits, 0 ≤ i ≤ 32.

! Bucket address table size = 2i. Initially i = 0! Value of i grows and shrinks as the size of the database grows

and shrinks.●  Multiple entries in the bucket address table may point to a bucket●  Thus, actual number of buckets is < 2i

! The number of buckets also changes dynamically due to coalescing and splitting of buckets.

Page 27: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.27Database System Concepts - 6th Edition

General Extendable Hash Structure

In this structure, i2 = i3 = i, whereas i1 = i – 1 (see next slide for details)

i i1

i2

i3

bucket 1

bucket 2

bucket 3

00..01..10..

11..

bucket address table

hash prefix

Page 28: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.28Database System Concepts - 6th Edition

Use of Extendable Hash Structure

■  Each bucket j stores a value ij●  All the entries that point to the same bucket have the same values on

the first ij bits. ■  To locate the bucket containing search-key Kj:

1. Compute h(Kj) = X2. Use the first i high order bits of X as a displacement into bucket

address table, and follow the pointer to appropriate bucket■  To insert a record with search-key value Kj

●  follow same procedure as look-up and locate the bucket, say j. ●  If there is room in the bucket j insert record in the bucket. ●  Else the bucket must be split and insertion re-attempted (next slide.)

! Overflow buckets used instead in some cases (will see shortly)

Page 29: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.29Database System Concepts - 6th Edition

Insertion in Extendable Hash Structure (Cont)

■  If i > ij (more than one pointer to bucket j)●  allocate a new bucket z, and set ij = iz = (ij + 1)●  Update the second half of the bucket address table entries originally

pointing to j, to point to z●  remove each record in bucket j and reinsert (in j or z)●  recompute new bucket for Kj and insert record in the bucket (further

splitting is required if the bucket is still full)■  If i = ij (only one pointer to bucket j)

●  If i reaches some limit b, or too many splits have happened in this insertion, create an overflow bucket

●  Else!  increment i and double the size of the bucket address table.!  replace each entry in the table by two entries that point to the

same bucket.!  recompute new bucket address table entry for Kj

Now i > ij so use the first case above.

To split a bucket j when inserting record with search-key value Kj:

Page 30: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.30Database System Concepts - 6th Edition

Deletion in Extendable Hash Structure

■  To delete a key value, ●  locate it in its bucket and remove it. ●  The bucket itself can be removed if it becomes empty (with

appropriate updates to the bucket address table). ●  Coalescing of buckets can be done (can coalesce only with a

“buddy” bucket having same value of ij and same ij –1 prefix, if it is present)

●  Decreasing bucket address table size is also possible! Note: decreasing bucket address table size is an expensive

operation and should be done only if number of buckets becomes much smaller than the size of the table

Page 31: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.31Database System Concepts - 6th Edition

Use of Extendable Hash Structure: Example

!"#$%&'(" !"!"#$%&'("#

$%&'&() **+* ++*+ ++++ +*++ **+* ++** **++ ****,&-./ 01%/ ++++ ***+ **+* *+** +**+ **++ *++* ++*+2'31/ 24(/ *+** **++ +*+* ++** ++** *++* ++*+ ++++5%46413 +*+* **++ +*+* **** ++** *++* +**+ ++++7%89&:) ++** *+++ +++* ++*+ +*++ ++++ **++ +*+*;<8%1 **++ *+*+ +*+* *++* ++** +**+ +++* +*++=!)8%18 +**+ +*** **++ ++++ +**+ ++** **** ***+

Page 32: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.32Database System Concepts - 6th Edition

Example (Cont.)

■  Initial Hash structure; bucket size = 2

0 0

bucket 1bucket address table

hash prefix

Page 33: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.33Database System Concepts - 6th Edition

Example (Cont.)

■  Hash structure after insertion of “Mozart”, “Srinivasan”, and “Wu” records

1 1

bucket address table

hash prefix

1

15151 Music 40000

1010112121

Srinivasan 90000Wu 90000

Mozart

Comp. Sci.Finance

!"#$%&'(" !"!"#$%&'("#

$%&'&() **+* ++*+ ++++ +*++ **+* ++** **++ ****,&-./ 01%/ ++++ ***+ **+* *+** +**+ **++ *++* ++*+2'31/ 24(/ *+** **++ +*+* ++** ++** *++* ++*+ ++++5%46413 +*+* **++ +*+* **** ++** *++* +**+ ++++7%89&:) ++** *+++ +++* ++*+ +*++ ++++ **++ +*+*;<8%1 **++ *+*+ +*+* *++* ++** +**+ +++* +*++=!)8%18 +**+ +*** **++ ++++ +**+ ++** **** ***+

Add “Einstein” record

Page 34: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.34Database System Concepts - 6th Edition

Example (Cont.)

■  Hash structure after insertion of Einstein record

2 1

2

2

bucket address table

hash prefix

15151 Music 40000Mozart

12121 Finance 90000Wu

10101 Comp. Sci. 65000Srinivasan

22222 Einstein Physics 95000

!"#$%&'(" !"!"#$%&'("#

$%&'&() **+* ++*+ ++++ +*++ **+* ++** **++ ****,&-./ 01%/ ++++ ***+ **+* *+** +**+ **++ *++* ++*+2'31/ 24(/ *+** **++ +*+* ++** ++** *++* ++*+ ++++5%46413 +*+* **++ +*+* **** ++** *++* +**+ ++++7%89&:) ++** *+++ +++* ++*+ +*++ ++++ **++ +*+*;<8%1 **++ *+*+ +*+* *++* ++** +**+ +++* +*++=!)8%18 +**+ +*** **++ ++++ +**+ ++** **** ***+

Add “Gold” and “El Said” records – Physics and History

Page 35: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.35Database System Concepts - 6th Edition

Example (Cont.)■  Hash structure after insertion of Gold and El Said records

3

1

3

3

bucket address table

hash prefix

2

2222233456

Physics 95000Physics 87000

Music15151 40000Mozart

EinsteinGold

12121 Wu 90000Finance

1010132343

SrinivasanEl Said

Comp. Sci.History 60000

65000

!"#$%&'(" !"!"#$%&'("#

$%&'&() **+* ++*+ ++++ +*++ **+* ++** **++ ****,&-./ 01%/ ++++ ***+ **+* *+** +**+ **++ *++* ++*+2'31/ 24(/ *+** **++ +*+* ++** ++** *++* ++*+ ++++5%46413 +*+* **++ +*+* **** ++** *++* +**+ ++++7%89&:) ++** *+++ +++* ++*+ +*++ ++++ **++ +*+*;<8%1 **++ *+*+ +*+* *++* ++** +**+ +++* +*++=!)8%18 +**+ +*** **++ ++++ +**+ ++** **** ***+

Page 36: Indexing and Hashingcse.iitrpr.ac.in/ckn/courses/s2015/w12.pdf · 2017. 3. 21. · Database System Concepts - 6th Edition 11.17 ©Silberschatz, Korth and Sudarshan Static Hashing

©Silberschatz, Korth and Sudarshan11.36Database System Concepts - 6th Edition

Example (Cont.)

3

bucket address table

hash prefix

2

3

3

3

2222233456

Physics 95000Physics 87000

MusicBiology

15151 4000072000

Mozart

EinsteinGold

12121 Wu 90000Finance

1010145565

SrinivasanKatz

Comp. Sci.Comp. Sci. 75000

65000

Crick76766

Singh76543 Finance

92000Comp. Sci.Brandt83821

3234358583

El SaidCalifieri

HistoryHistory

6000062000

80000

3

And after insertion of eleven records