Chris Pollett> Old Classses >
CS157b

( Print View )

Student Corner:
[Submit Sec2]
[Grades Sec2]

[Online Final-PDF]

[Online Midterm-PDF]

[Lecture Notes]
[Discussion Board]

Course Info:
[Texts & Links]
[Description]
[Course Outcomes]
[Outcomes Matrix]
[Course Schedule]
[Grading]
[Requirements/HW/Quizzes]
[Class Protocols]
[Exam Info]
[Regrades]
[University Policies]
[Announcements]

HW Assignments:
[Hw1] [Hw2] [Hw3]
[Hw4] [Hw5] [Quizzes]

Practice Exams:
[Midterm] [Final]

HW#3 --- last modified March 25 2020 21:35:46.

Solution set.

Due date: Mar 26

Files to be submitted:
  Hw3.zip

Purpose: To gain experience with query cost evaluation and query plan evaluation. To learn about database recovery techniques.

Related Course Outcomes:

The main course outcomes covered by this assignment are:

CLO4 -- Tune queries and know how to perform query performance evaluations

CLO5 -- Know database recovery techniques

Specification:

This homework will consist of two parts, a written part and a coding/experiment part. Both parts will be submitted in the Hw3.zip file. The written part should be in a file Hw3.pdf. For the written part of the homework you should write solutions for the following questions. In what you turn in, make sure to write the names and student ids for each group member. For each problem, first copy and paste the question, then write your solution to it beneath it.

  1. For each of the following operations, write an iterator that uses an algorithm described in class to enumerate the output of the following operations: (a) select tuples where some attribute = some value (b) bag intersection. Make sure your iterator reads whole blocks at a time, but outputs tuples at time.
  2. If `B (R) = B (S) = 75,000` and `M = 4000`, what are the disk I/O requirements of: (a) two-pass set intersection from class, (b) hash-join from class.
  3. Come up with additional query parsing rules to add to our rules from the Mar 4 Lecture to say what attributes are. Make sure your rules can handle expressions that might be connected with aggregation (MIN, MAX, AVG, SUM, COUNT) connected with a GROUP BY clause.
  4. Consider the table:
    Y(c,d)Z(d,e)
    T(Y)=1500T(Z)=500
    V(Y,c)=50V(Z,d) =70
    V(Y,d)=30V(Z,e) =150
    Estimate the sizes of relations that are the results from the following queries: (a) `sigma_{d=45}(Z)`, (b) $Y \bowtie \sigma_{d=45}(Z)$ (assume we have an index on the join attribute).
  5. Assume `A=50, B=100` (here we imagine `A` and `B` are blocks that can hold 1 integer) are stored in a DB. Suppose a transaction does the following sequence of operations I(A), I(B), R(A,a), a:= a+10, W(A,a), R(B,b), b:=b - a, W(B,b), O(A), O(B). Show the undo log records needed for this transaction.

For the coding/experiment part of the homework, I want you to see the actually plan a DBMS will choose for various kinds of queries. You can conduct your experiments using the DBMS of your choice from among sqlite, Mysql, Postgres, DB2, and Oracle. So that the grader has something to evaluate I want you to produce a file Experiment.pdf which has at its top a write up of your results followed by transcripts of each of the explain operation I am asking for as well as how you created the input tables. Each of the DBMSs mentioned above has a variant on the EXPLAIN command which tells you how the system would evaluate a query. For example,

EXPLAIN SELECT * FROM USERS;

or some variant will tell you how the database would perform the query select * from users; without actually performing the query. To do the experiments you will first need to create a program DataGenerator.java. This program will be run from the command line with a line with the following format:

java DataGenerator start_value num wrap_number txtfile

The program should output into txtfile num many rows of two columns, space separated. The first column starts with the value start_value and increments one with each row. The second column's value is a string of `a`'s of length cycling (via mod function) between 1 and wrap_number. If wrap_number > 10, this then wrap_number is set to 10. For example, filling in these values we might write:

java DataGenerator 10 20 5 data.txt

The program might output into data.txt the rows:

10 a
11 aa
12 aaa
13 aaaa
14 aaaaa
15 a
16 aa
17 aaa
18 aaaa
19 aaaaa
20 a
21 aa
22 aaa
23 aaaa
24 aaaaa
25 a
26 aa
27 aaa
28 aaaa
29 aaaaa

You should include both the file Experiment.pdf and DataGenerator.java in the Hw3.zip file you submit. Create five tables R1(A,B), R2(C,B), R3(D,B), R4(E,B), R5(F,B). For each, the first column should be an integer, the second a VARCHAR(10) or CHAR(10). You should include the execution of the create tables in Experiment.pdf. Next generate five tables worth of data with the following lines:

java DataGenerator 0 1000 5 R1data.txt
java DataGenerator 1000 1000 5 R2data.txt
java DataGenerator 2000 1000 5 R3data.txt
java DataGenerator 3000 1000 10 R4data.txt
java DataGenerator 4000 1000 10 R5data.txt

Use the bulk loader facility of the database you chose to load these five files into their corresponding table. Copy the text or show a screenshot of performing the load operation into Experiment.pdf. Now consider the join of all five tables with the condition R1.B=R2.B and R2.B=R3.B and R3.B=R4.B and R4.B=R5.B and R5.B='aaaa'. Express this query in SQL in as a join that would look like a left-tree, bushy tree, and right-tree. For each way, use explain to find out how your DBMS would execute the query. Also, see if the answer changes when switching from using VARCHAR's for the second column versus CHAR's. Put all of this information into Experiment.pdf. Try executing each of your equivalent queries and check that the results match. Write up, again in Experiment.pdf, which you think is the best way to do the query. If you desire you can also experiment with indexes to see if it helps the execution speed.

Point Breakdown

Written problems (Each 0 - wrong track, 0.5 - something correct, 1pt - mostly correct, 1.5pt fully correct)7.5pts
DataGenerator.java works as described0.5pts
Transcripts of create table and bulk loading in Experiment.pdf0.5pts
Transcripts of three different ways of writing joins and the explain command results0.5pts
Write up of analysis of the results of query execution, what thought was best plan, etc.1pt
Total10pts