CS 4250: Database Management Systems

Spring 2022 - Homework 4

Concurrency Control and Recovery Homework

Upload to the CS Homework system on or before midnight on Tuesday, 17 May 2022. Typed, in a plain text, PDF or MS Word document.

(Strongly prefer plain text. Will accept PDF or MSWord documents, if typed.)

Handwritten answers, on paper or as photographs, strongly discouraged.

This is an individual assignment. All work must be your own. You should not look at any other student's work (in whole or in part, on paper or on screen), nor allow anyone else to look at yours, during the course of this assignment.

Note: T<number> identifies a transaction numbered number. R(<letter>) identifies a read operation on database object letter. W(<letter>) identifies a write operation on database object letter.

Questions

  1. Consider the following schedule:

    T1: R(A) T3: R(C) T3: R(D) T2: R(C) T1: W(A) T2: W(C) T3: R(A) T1: R(B) T1: W(B) T2: R(B), T2: R(D), T2: W(D), T3: W(A)

    Is the schedule serializable? If so, show an equivalent serial transaction order. If not, precisely describe why not.

    If relevant, fill in this table with the equivalent serial transaction order. Time proceeds from left to right, with only one action possible in each time slot.
    Serializable Schedule Time 1 Time 2 Time 3 Time 4 Time 5 Time 6 Time 7 Time 8 Time 9 Time 10 Time 11 Time 12 Time 13 Time 14 Time 15
    T1














    T2














    T3














  2. Consider the following schedule:

    T2: W(A), T3: R(A), T1: R(A), T3: R(A), T2: R(B), T1: W(A), T2: W(B), T3: R(D), T3: W(D), T1: R(C), T2: R(C)

    Is the schedule serializable? If so, show an equivalent serial transaction order. If not, precisely describe why not.

    If relevant, fill in this table with the equivalent serial transaction order. Time proceeds from left to right, with only one action possible in each time slot.
    Serializable Schedule Time 1 Time 2 Time 3 Time 4 Time 5 Time 6 Time 7 Time 8 Time 9 Time 10 Time 11 Time 12 Time 13 Time 14 Time 15
    T1














    T2














    T3














  3. For questions 3-5, consider the execution of the ARIES recovery algorithm given the following log:

    LSN Log Record
    00 begin_checkpoint
    05 end_checkpoint
    10 Update: T2 writes P3
    20 Update: T1 writes P1
    30 T2 abort
    40 Update: T3 writes P1
    50 Update: T3 writes P2
    60 T3 commit
    70 Update: T1 writes P4
    80 CLR: Undo T2 LSN 10
    90 Update: T4 writes P3
    100 T3 end
    110 T4 abort
    X - crash, restart

    For the questions below, when you are asked which log records are read, you are to supply the exact list of LSNs from log above. When data pages are asked for, you are to supply the exact list of page identifiers from the log above. And so on. Be specific and concrete in your answers, answering specifically for the provided log.

    Operations can be identified using the LSN for the log record recording that operation. (So, of course, can the log record itself.)

    Generic statements or quotations from the textbook (or slides) will earn 0 points. Example: "all the pages" == 0 points. "P1, P2 and P3" == more than 0 points, assuming those are the pages read. (Don't use English. List the log record numbers, list the page numbers, etc.)

    For questions 3-5, parts a-c are separate questions. Answer a through c separately. Label your answers so that it is clear what is your answer to '3.a' and what is your answer to '4.c', and so on.

  4. During Analysis:

  5. During Redo:

  6. During Undo:
  7. Consider these tables (from Homework 2).
    Engineer (engineerID: integer, lname: string, fname: string, jobtitle: string, email: string, proEngineerExamTitle: string, proEngineerExamPassDate: date, salary: integer, vacationDaysAccumulated: integer)

    WorkingGroupMembers(workgroupID: integer, engineerID: integer, startDate: date, endDate: date, role: string)

    Assume the WorkingGroupMembers table has 20,000 tuples in it and the Engineer table has 1,000 tuples. Most working groups involve 10 to 50 members, and each group has only one or two treasurers.

    Also consider this question:

    Find the last names and first names of engineers, and the dates they start working on a working group, when the engineers have the role "Treasurer" in the working group.

    One possible solution to the question is:

    SELECT E.lname, E.fname, W.startDate FROM WorkingGroupMembers W, Engineer E WHERE W.role = "Treasurer" AND W.engineerID = E.engineerID;

    a) Translate this SQL query into a corresponding relational algebra expression (and write down the expression).
    b) Then draw the query tree for your relational algebra expression.
    c) Using equivalencies of relational algebra expressions, re-write your relational algebra expression into a more efficient form, if possible. Draw the new, corresponding query tree. Explain why your new expression is more efficient.