代做COMP643 Advanced Database Management Assignment 2代写SQL语言

COMP643 Advanced Database Management

Assignment 2

Worth:                     40%

Due:                          Friday, 24th May 2024 5:00 p.m.

Late Penalty:          Work not received by the due time incurs an immediate penalty of up to 25% of

the marks available. No work will be accepted after Sunday 26th May 2024 5:00 p.m.

Submission:            via COMP643 on LEARN

Part 1 - Transaction Management and Concurrency Control (60 points)

Agri Markets sell products to customers. The relational diagram in Figure 1 represents the main entities for Agri’sdatabase.

Figure 1- The Agri Markets Entity Relationship Diagram (ERD)

Note the following important characteristics:

•    A customer may make many purchases, each one represented by an invoice.

o The cus_balance is updated with each credit purchase or payment and represents the amount the customer owes.

o The cus_balance is increased (+) with every credit purchased and decreased (-) with every customer payment.

o The date of last purchase (cus_datelstpur) is updated with each new purchase made by the customer.

o The date of the last payment (cus_datelstpmt) is updated with each payment made by the customer.

•    An invoice represents a set of products purchased by a customer.

o An Invoice can have many invoice lines, one for each product purchased.

o The inv_total represents the total cost of the invoice including taxes.

o The inv_terms can be “30”, “60”, or “90” (representing the number of days of credit) or “cash” or “cheque” or “cc” .

o The inv_status can be “open”, “paid” or “cancel” .

•    A product’s quantity on hand (p_qtyoh) is updated (decreased) with each product sale.

•    A customer may make many payments. The payment type (pmt_type) can be one of the following:

o “cash” for cash payments.

o “cheque” for cheque payments.

o “cc” for credit card payments.

•    The payment details (pmt_details) are used to record data about check or credit card payments.

o The bank, account number, and cheque number for cheque payments.

o The issuer, credit card number, and expiration date for credit card payments.

Note: Not all entities are represented in this example. Use only the attributes indicated.

Q1.     Using this database, write the SQL code to represent each of the following transactions. Use

BEGIN TRANSACTION to group the SQL statements in logical transactions. (10 points)

a.    On 20 Apr 2024, customer 10010 makesacredit purchase (60 days) of two units of

product 23109-HB with a unit price of $9.95 and one unit of product WR3-TT3 with a unit price of $119.95. The tax rate is 10%. The invoice number is 20001, and this invoice has     two product lines.

b.    On 5 May 2024, customer 10010 makes a payment of $100 in cash. The payment ID is 5001.

Q2.     Create a simple transaction log (using the format shown in Lecture 9) to represent the actions and transactions in Q1a. (10 points)

Q3.     Using the two-phase locking protocol, create a chronological list of locking, unlocking and data manipulation activities that would occur during the complete processing of the transaction

described in Q1a. (10 points)

Q4.     For the following schedule, assume that the shared locks are requested immediately before    each read operation, and exclusive locks are requested before every write operation. Unlocks occur immediately after the COMMIT statement.

a.    Add lock and unlock requests (using shared/exclusive locks) and explain why this schedule will cause a deadlock. You will need to rewrite the schedule to show the lock and unlock    requests. (10 points)

b.   Assume that the timestamp for transaction T(i) is i, explain how this deadlock will be handled using wait/die and wound/wait schemes. (10 points)

Q5.     Given the concurrent transactions shown in Figure 2. At time 9, a crash occurred.

Figure 2- Timeline of Concurrent Transactions

a.    Describe in detail the database recovery process using the deferred-write technique for each transaction (5 points).

b.    Describe in detail the database recovery process using the write-through technique for each transaction (5 points).

Part 2 - Database Performance Tuning and Query Optimisation (40 points)

The following relational database schema is used to keep track of customer orders for roses at Lincoln Rose Farm:

Customer (cust_num, cust_name, cust_city, cust_balance)

Orders (order_num, cust_num, order_date, order_total)

Orderline (line_num, order_num, prod_num, line_qty, line_total)

Product (prod_num, prod_desc, prod_price, prod_qoh)

The following SQL query is used to select all customers from Christchurch with a balance greater than 0 who have ordered “Ausblush” rose.

SELECT cust_name

FROM (((customer

INNER JOIN orders on customer.cust_num = orders.cust_num)

inner join orderline on orders.order_num = orderline.order_num)

inner join product on orderline.prod_num = product.prod_num)

where product.prod_desc = "Ausblush"

and customer.cust_city = "Christchurch"

and customer.cust_balance > 0.00;

Assume:

•    There are 10 customers, 10 products, 10 orders, and 22 order lines.

“Ausblush” has been ordered 7 times.

There are 6 customers who are based in “Christchurch” who has ordered “Ausblush” .

•    There are 5 customers who are based in “Christchurch” and who has a balance greater than 0.00 who has ordered “Ausblush” .

•    There is only one product with prod_desc equals to “Ausblush” .

•    There are 132 rows of matching cust_num for all customers who are based in “Christchurch” with balance greater than 0.00 who have ordered “Ausblush” .

•    There are 14 rows of matching cust_num and order_num for all customers who are based in “Christchurch” with balance greater than 0.00 who have ordered “Ausblush” .

Q1.  Create two alternative access plans and show their respective I/O costs using the example table shown in Week 10 Lecture. (20 points)

Q2.  You have been asked tooptimise the performance of the query.

a)     Identify and describe what indexes should be created and why? (10 points)

b)     Revise your access plan and the I/O cost for the selected plan from Q1 assuming the indexes you have identified are applied. (10 points)

Part 3 - Database Security (20 points)

Q1.     In Part 2, the database schema is used to process orders for roses. Orders are handled by the sales office. There are currently five staff in this office. Carol, the supervisor, needs to be able to see and update everything. Lim, Jane, and Billy do most of the routine work. They can add, update, and delete orders. They can view existing customers, but they cannot create new customers. Mina is a temporary staff member. She can process orders (add, update, and delete). For customer records, she is only allowed to view the cust_num and cust_name. Large orders above $1000 can only be handled by Carol and Billy.

a.    What privileges should be granted to Carol with respect to the four tables? Explain your answer. (6 points)

b.    List the privileges should be granted to Lim, Jane, and Billy. (4 points)

c.    What privileges should be granted to Mina? (2 points)

d.    What additional privileges do you need to grant Carol and Billy so that only these two can handle large orders above $1000. How do you ensure that the rest of the staff are not able to handle large orders? (5 points)

e.    What steps do you need to take to ensure that the privileges are set correctly? (3 points)


热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图