Physical Database Design
This assignment is ungraded and should not be submitted. The questions review key concepts from the reading for this module.
Help Policy
- Authorized Resources
- Any
- Notes
- You may jointly work on this assignment with classmates
Assignment
Answer the following questions from Fundamentals of Database Management Systems (solutions):
-
Describe the idea of the simple linear index. What are its shortcomings? (Question 8.6)
-
Describe the idea of the B+-tree index. What are its advantages over the simple linear index? (Question 8.8)
- Answer the following general questions about indexes (Question 8.11):
-
Can an index be built over a non-unique field?
-
Can an index be built over a field if the file is not stored in sequence by that field?
-
Can an index be built over a combination of fields as well as over a single field?
-
Is there a limit to the number of indexes that can be built for a file?
-
How is an index affected when a change is made to a file? Does every change to a file affect every one of its indexes?
-
Can an index be used to achieve sequential access? Explain.
-
-
What is the difference between horizontal and vertical partitioning? What is their common advantage? Are their disadvantages the same or different? Explain. (Question 8.29)
-
What is denormalization? Denormalization, while improving performance under certain circumstances, also leads to a serious problem. How does denormalization improve performance and what is this major drawback? (Question 8.34)
-
Consider the B+-tree index, that follows (Exercise 8.3):
-
A record has just been added to Cylinder 6, causing a cylinder split. The highest key value on Cylinder 6 is now 2156; the highest key value on Cylinder 20, and the empty reserve cylinder that received half of Cylinder 6’s records, is now 2348. Update the tree index accordingly.
-
A record has just been added to Cylinder 10, causing a cylinder split. The highest key value on Cylinder 10 is now 3780; the highest key value on Cylinder 25, and the empty reserve cylinder that received half of Cylinder 10’s records, is now 3900. Update the tree index accordingly. (Note: this question is intended to be independent of the prior question. Start each part from the figure shown.)
-
- A hashed file has space for 70 records. Relative record numbers of 0–69
label each of the 70 record positions. In addition, there is space for
several overflow (synonym) records. Draw a picture of the file and, using
the division-remainder method, store records with each of the following four
digit keys, taking collisions into account as necessary (Exercise 8.4):
- 4000
- 5207
- 0360
- 1410
-
Consider the Super Baseball League Player file shown below. It lists all of the players in the league by their unique identification number, their name, age, the year they joined the league, and the team on which they are currently playing.
Player Number Player Name Age First Year Team Number 1538 Fred Williams 23 2003 12 1882 Tom Parker 29 2000 35 2071 Juan Gomez 33 1990 12 2364 Steve Smith 24 2002 20 2757 Tim Jones 37 1988 18 3186 Dave Lester 29 1998 18 3200 Rod Smith 25 2002 20 3834 Chico Lopez 24 2003 12 4950 Chris Vernon 26 2003 15 5296 Barry Morton 30 1995 35 - Construct a B+-tree index of the type shown in this chapter for the
Player file, assuming that there are now many more records than are
shown above. The file and the index have the following characteristics
(Minicase 8.2.b):
- The file is stored on eight cylinders of the disk. The highest key
values on the eight cylinders, in order, are:
- 1427
- 1965
- 2848
- 3721
- 4508
- 5396
- 6530
- 7442
- Each index record has order 4—i.e., is has at most 4 children.
- There are three index records at the lowest level of the tree index.
- The file is stored on eight cylinders of the disk. The highest key
values on the eight cylinders, in order, are:
-
The same as the prior part, but now there are four index records at the lowest level of the tree index. (Minicase 8.2.c)
-
The same as the prior part, but each index record has order 3 and there are four index records at the lowest level of the tree index. (Minicase 8.2.d)
- Construct a B+-tree index of the type shown in this chapter for the
Player file, assuming that there are now many more records than are
shown above. The file and the index have the following characteristics
(Minicase 8.2.b):