数据库 | CSCI235/CSCI835 Database Systems Assignment 2

这个作业是完成与数据库事务的实现有关的任务
CSCI235/CSCI835 Database Systems
Assignment 2
27 April 2020
Scope
This assignment includes the tasks related to implementation of database transactions.
The outcomes of the laboratory work are due by Saturday 16 May, 2020, 7.00 pm
(sharp).
Please read very carefully information listed below.
This laboratory contributes to 20% of the total evaluation in a subject CSCI235 and it
contributes to 17% of the total evaluation in a subject CSCI835.
A submission procedure is explained at the end of specification.
This assignment consists of 4 tasks and specification of each task starts from a new page.
It is recommended to solve the problems before attending the laboratory classes in order
to efficiently use supervised laboratory time.
A submission marked by Moodle as “late” is treated as a late submission no matter how
many seconds it is late.
A policy regarding late submissions is included in the subject outline.
A submission of compressed files (zipped, gzipped, rared, tared, 7-zipped, lhzed, … etc)
is not allowed. The compressed files will not be evaluated.
All files left on Moodle in a state “Draft(not submitted)” will not be evaluated.
An implementation that does not compile due to one or more syntactical errors scores no
marks.
It is expected that all tasks included within Assignment 2 will be solved individually
without any cooperation with the other students. If you have any doubts, questions, etc.
please consult your lecturer or tutor during lab classes or office hours. Plagiarism will
result in a FAIL grade being recorded for the assessment task.
Prologue
Download the files dbcreate.sql and dbdrop.sql included in a section SAMPLE
DATABASE. To drop a sample database, process a script dbdrop.sql. To create a
sample database, process as script dbcreate.sql. It is strongly recommended to drop
a sample database and to re-create it before each implementation task. No report is
expected from Prologue.
Tasks
Task 1 (4 marks)
View serializability versus conflict serializability
Assume, that a sample database contains three data items x, y, and z and that the values
of the data items are the following x = 10, y = 20, and z = 30.
Consider three database transactions T1 , T2 , and T3 given below.
T1 T2 T3
read(x) read(x) read(x)
write(x, x+10) read(y) read(z)
write(y, x) write(y,x+y) write(z, z+x)
Show a sample concurrent execution of the transaction T1 , T2 , and T3 that is view
serializable and that is not conflict serializable.
Present a concurrent execution of the transaction T1, T2, and T3 that is view
serializable and that is not conflict serializable in a two-dimensional table with three
columns such that each column contains a sequence of operations processed by one
transaction and with nine rows such that each row contains an operation processed by one
transaction.
A sample two-dimensional table that contains a concurrent execution of three database
transaction is available in a presentation Introduction to Transaction
Processing (2), slide 11.
Make sure that two-dimensional table that contains your solutions does not contain a row
with two operations processed by two or more different transactions.
Save your solution in a file solution1.pdf.
Deliverables
A file solution1.pdf a sample concurrent execution of the transaction T1 , T2 , and
T3 given above that is view serializable and that is not conflict serializable
Task 2 (5 marks)
Serialization graph testing, 2PL and timestamp ordering schedulers.
Consider the following concurrent execution of three database transactions T1, T2, and
T3.
T1 T2 T3
read(x)
read(x)
write(x,x+10)
read(u)
read(y)
write(y,y+1)
read(z)
read(z)
write(z,z+1)
write(x,u+2)
read(z)
read(v)
write(v,v+z)
write(v,y+z)
read(x)
write(x,x+z)
In a concurrent execution above, the transactions interleaved their operations and no
controller (scheduler) has been used to control the processing of the transactions. A
transaction T1 started first, followed by a transaction T2 and finally a transaction T3
started as the last one. Therefore, timestamp(T1) < timestamp(T2) <
timestamp(T3).
(1) Draw a conflict serialization graph for the concurrent execution of database
transactions given above. (1 mark)
(2) Show a history of concurrent execution when the database transactions T1, T2, and
T3 interleave their operations in the same way as above and the concurrent
processing is controlled by a 2PL protocol scheduler. (2 marks)
Assume, that it is up to you, which transaction resumes execution when a lock on a
data item is released.
A sample processing of database transactions controlled by a 2PL protocol
scheduler can be found in the lectures slides.
When presenting your solution, apply the same two-dimensional tabular
visualisation of concurrent execution of database transactions as above.
(3) Show a history of concurrent processing when the database transactions T1, T2,
and T3 interleave their operations in the same way as above and the concurrent
processing is controlled by a timestamp ordering protocol scheduler. (2 marks)
Assume, that it is up to you, which transaction is aborted when incorrect order of
timestamps is detected.
A sample processing of database transactions controlled by a timestamp ordering
protocol scheduler can be found in the lectures slides.
When presenting your solution, apply the same two-dimensional tabular
presentation of concurrent database transactions as above.
Deliverables
A file solution2.pdf with conflict serialization graph (step 1), a history of
concurrent execution of database transactions when controlled by a 2PL protocol (step 2),
and a history of concurrent execution of database transactions controlled by a timestamp
ordering protocol (step 3).
Task 3 (5 marks)
Deadlocks
Connect to your Oracle account, restore the contents of a sample database to its original
state, and disconnect.
Next, open three terminal windows and in each window start SQLcl client and connect
to your account (note, that because you have only 3 connections available, termination of
a connection that restores a sample database is very important ! ).
Three SQLcl command line client connections simulate 3 different users concurrently
change the contents of a sample database.
All three users plan to update the relational tables EMPLOYEE, CUSTOMER, and
ORDERS. All details of the updates are up to you.
Process in three SQLcl command line connections the UPDATE statements on the tables
EMPLOYEE, CUSTOMER, and ORDERS such that simulated concurrent processing leads
to a deadlock that involves all three users/transactions.
UPDATE statements can be processed in any order within SQLcl command line
connections. As it has been already mentioned, all other details of the updates are up to
you. Note, that the details and the orders of UPDATE statements will be used to evaluate
originality of your solution.
You can find a sample solution of a very similar problem in Cookbook, Recipe 8.3,
How to process transactions at SERIALIZABLE isolation level
? Step 4 How to check if SERIALIZABLE transactions get into
a deadlock situation ?
When ready, i.e. when the simulated processing of three transactions ends up in a
deadlock copy and paste the contents of three windows with SQLcl connections and save
one by one in a file solution3.lst. Do not forget to save an evidence that actually a
deadlock has happened.
Deliverables
A file solution3.lst with a report from the simulated processing of three
transactions that ends up in a deadlock
Task 4 (6 marks)
READ COMMITTED versus SERIALIZABLE isolation levels
Assume that the structures and the contents of a sample database have been changed in
the following way.
ALTER TABLE CUSTOMER ADD (TOTAL_ORDERS NUMBER(7));
UPDATE CUSTOMER
SET TOTAL_ORDERS = ( SELECT count(*)
FROM ORDERS
WHEREORDERS.CUSTOMER_CODE = CUSTOMER.CUSTOMER_CODE );
A database developer implemented the following stored procedure.
CREATE OR REPLACE PROCEDURE INSERT_ORDER(oid IN NUMBER,
ccode IN VARCHAR,
eid IN NUMBER) IS
total CUSTOMER.TOTAL_ORDERS%TYPE;
BEGIN
INSERT INTO ORDERS VALUES(oid, ccode, eid, sysdate, sysdate + 5, sysdate + 1,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
SELECT TOTAL_ORDERS
INTO total
FROM CUSTOMER
WHERE CUSTOMER.CUSTOMER_CODE = ccode;
total := total + 1;
UPDATE CUSTOMER
SET TOTAL_ORDERS = total
WHERE CUSTOMER.CUSTOMER_CODE = ccode;
COMMIT;
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE( SQLERRM );
ROLLBACK;
END;
/
The procedure INSERT_ORDER can be used to insert information about a new order
submitted by a customer. Assume that the procedure INSERT_ORDER can be processed
concurrently by many different users.
Your task is to decided what isolation level the procedure INSERT_ORDER should be
processed and to justify your decision.
You have the following two options: READ COMMITTED or SERIALIZABLE. I am
sure that there is no need to explain why the procedure cannot be processed at READ
ONLY isolation level.
If you decide that the procedure can be processed at READ COMMITTED level then as
justification of your decision provide a proof that any concurrent processing of the
procedure at READ COMMITTED level does not corrupt a sample database.
If you decide that the procedure can be processed at SERIALIZABLE level then as a
justification provide a concurrent processing of the procedure at READ COMMITTED
level that corrupts a database. You can apply two-dimensional visualisation of concurrent
execution of database transactions as it has been already used in this assignment.
Deliverables
A file solution4.pdf with a decision what isolation level a stored procedure
INSERT_ORDER should be processed at and with comprehensive justification of the
decision. Note, that a decision without justification, i.e. “educated guess” scores no
marks.
Submission
Submit the files solution1.pdf, solution2.pdf, solution3.lst and
solution4.pdf through Moodle in the following way:
(1) Access Moodle at http://moodle.uowplatform.edu.au/
(2) To login use a Login link located in the right upper corner the Web page or in
the middle of the bottom of the Web page
(3) When logged select a site CSCI835/CSCI235 (S120) Database
Systems
(4) Scroll down to a section SUBMISSIONS
(5) Click at a link In this place you can submit the outcomes of
Assignment 2
(6) Click at a button Add Submission
(7) Move a file solution1.pdf into an area You can drag and drop
files here to add them. You can also use a link Add…
(8) Repeat a step (7) for the files solution2.pdf, solution3.pdf, and
solution4.pdf.
(9) Click at a button Save changes
(10)Click at a button Submit assignment
(11)Click at the checkbox with a text attached: By checking this box, I
confirm that this submission is my own work, … in order to
confirm the authorship of your submission.
(12)Click at a button Continue
End of specification

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/31099.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

rust数据类型

目录 一&#xff0c;基本类型 1&#xff0c;基本类型 &#xff08;1&#xff09;整数类型 &#xff08;2&#xff09;浮点数 &#xff08;3&#xff09;bool类型 &#xff08;4&#xff09;char类型 2&#xff0c;基本类型的代数结构 二&#xff0c;复合类型 1&#x…

【信息学奥赛】CSP-J/S初赛04 进制转换相关问题(二、八、十六进制与十进制互相转换)

​ 大家好&#xff0c;我是bigbigli&#xff0c;今天我们学习初赛中常考的一个数学内容——进制转换 进制转换 常用的数制 权&#xff1a;数制中某一位上的1所表示的数值的大小&#xff0c;比如十进制中的123&#xff0c;1的位权是100,2的位权是10,3的位权是1。 进制基数基数…

这些帮助你成长的IOS应用,建议收藏

TrackIt TrackIt是一款功能丰富的任务清单、日程管理和习惯打卡应用&#xff0c;旨在帮助用户提高效率和专注力。通过这些功能&#xff0c;用户可以更好地规划时间和任务&#xff0c;从而实现个人目标和养成良好习惯。 在目标设定方面&#xff0c;SMART原则是一个常用的方法&a…

【决战欧洲之巅】丹麦 vs 英格兰战术分析和球员状态以及走地数据分析

丹麦 vs 英格兰战术分析和球员状态 阵型与战术 丹麦: 阵型:丹麦通常采用4-3-3阵型&#xff0c;以因防守为基础&#xff0c;同时通过快速反击等找机会。 ”战术: 防守:丹麦在防守时以紧密的四后卫体彩为核心&#xff0c;辅以中场球员的积极回防&#xff0c;形成稳因的防 线。…

解决HassOS无法获取ip地址问题

目录 问题描述解法 问题描述 在ESXi中安装完HassOS后&#xff0c;开机遇到一个无法获取ip地址的问题&#xff0c;如下图所示&#xff1a; 输入network info命令&#xff0c;显示ipv4已被禁用&#xff0c;如下图所示&#xff1a; 解法 在控制台ha >后输入下面命令 netw…

基于Java技术“漫画之家”系统

开头语&#xff1a;你好呀&#xff0c;我是计算机学姐码农小野&#xff01;如果有相关需求&#xff0c;可以私信联系我。 开发语言&#xff1a;Java 数据库&#xff1a;MySQL 技术&#xff1a;Java技术&#xff0c;B/S结构&#xff0c;SpringBoot框架 工具&#xff1a;MyEc…

使用Python写入Excel文件,设置列宽和行高

哈喽,大家好,我是木头左! Python与Excel的完美结合 在当今这个数据爆炸的时代,处理大量数据已经成为了日常工作的一部分。而Python作为一种功能强大、易于学习的编程语言,已经成为了数据处理的首选工具。那么,如何将Python与Excel结合起来,实现数据的高效处理呢?本文将…

DBdoctor v3.2.1 版本发布,支持对瀚高、人大金仓的纳管!

DBdoctor v3.2.1版本发布&#xff0c;更新内容如下&#xff1a; 功能优化 SQL审核&#xff1a;新增批量SQL审核功能&#xff0c;支持通过文件上传或者输入窗口批量提交的方式进行SQL审核。 新增数据库引擎 新增对瀚高、人大金仓数据库引擎的纳管支持。 瀚高&#xff08;highg…

板凳--------第60章 SOCKET:服务器设计

60.1 迭代型和并发型服务器 1016 1.迭代型&#xff1a; 服务器每次只处理一个客户端&#xff0c;只有当完全处理完一个客户端的请求后才会去处理下一个客户端。只适用于快速处理客户端请求的场景&#xff0c;因为每个客户端都必须等待&#xff0c;直到前面所有的客户端都处理完…

一键批量复制至指定文件夹,轻松实现同名文件覆盖,数据管理更高效!

在数字化时代&#xff0c;文件的管理与复制是每位电脑用户都不可避免的日常工作。你是否曾因为大量文件的复制与更新而焦头烂额&#xff1f;是否曾因为同名文件的冲突而不知所措&#xff1f;别担心&#xff0c;现在&#xff0c;我们为您带来高效文件复制管理的秘诀&#xff0c;…

【管理咨询宝藏132】国际顶级咨询公司战略组织运营报告套装

本报告首发于公号“管理咨询宝藏”&#xff0c;如需阅读完整版报告内容&#xff0c;请查阅公号“管理咨询宝藏”。 【管理咨询宝藏132】国际顶级咨询公司战略&组织&运营报告套装 【格式】PDF版本 【关键词】德勤、罗兰贝格、外资咨询、战略规划、组织管控、运营提升、…

HNU操作系统2022期中考试试卷及参考答案

一、&#xff08;20分&#xff0c;每小题5分&#xff09;简答题 &#xff08;1&#xff09;通过多任务共享实现的虚拟化CPU与通常虚拟机&#xff08;VMware等&#xff09;里所使用的虚拟化技术有什么不一样&#xff1f; 多任务共享实现的虚拟化CPU通常指的是在操作系统层面&am…

证书速览|CCSK云计算安全知识认证

随着云计算技术的发展&#xff0c;现在越来越多的企业感受到云的好处&#xff0c;把业务逐渐转移到云上。上云是大势所趋&#xff0c;也是现今企业发展的实际需要。 这就意味着企业会更青睐于具备云安全专业知识、技能与经验的人员。 CCSK 云计算安全知识认证&#xff0c;是由…

065、Python 关于一等函数的理解

在Python编程语言中&#xff0c;函数是作为一等对象&#xff08;first-class objects&#xff09;的存在。这意味着函数在编程中享有与其他数据类型相同的地位&#xff08;即可以像其他对象一样被操作&#xff09;。例如可以赋值给变量、作为参数传递给函数、作为函数的返回值等…

【学习笔记】Maven高级01:POM深入了解

文章目录 一、POM的四个层次超级POM父POM当前POM有效POM(effective pom) 二、属性的声明和引用使用 mvn help:evaluate查看属性通过Maven访问系统属性1、访问Java系统属性2、访问系统属性4、访问系统环境变量5、访问project属性访问一级标签访问子标签访问标签列表 6、访问全局…

欢迎加入大雨的 Java 开发交流群

最近建了一个 Java开发交流群&#xff0c;欢迎苏州、上海朋友加入&#xff0c;后期会举办线下交流活动。 本群的宗旨&#xff1a;让所有学习的群友都有进步的机会。 1. 经验交流 在我们学习时遇到困境&#xff0c;或者开发过程中遇到难题&#xff0c;都可以将你的问题抛出来&…

c++里 父类私有的虚函数,也是可以被子类重写和继承的。但父类私有的普通函数,子类无法直接使用

谢谢 。今天看课本上有这么个用法&#xff0c;特测试一下。这样就也可以放心的把父类的私有函数列为虚函数了&#xff0c;或者说把父类的虚函数作为私有函数了。 再补充一例&#xff1a;

2024-06月 | 维信金科 | 风控数据岗位推荐,高收入岗位来袭!

今日推荐岗位&#xff1a;策略分析经理/分析专家、贷前、中策略分析、风控模型分析。 风控部门是金融业务的核心部门&#xff0c;而从事风控行业的人即称之为风险管理者。是大脑&#xff0c;是最最最重要的部门之一。今日推荐岗位的核心技能分布如下&#xff1a; 简历发送方式…

如何使用ChatGPT辅助设计工作

文章目录 设计师如何使用ChatGPT提升工作效率&#xff1f;25个案例告诉你&#xff01;什么是 prompt&#xff1f;咨询信息型 prompt vs 执行任务 prompt编写出色 prompt 的基本思路撰写 prompt 的案例和技巧1、将 ChatGPT 视作专业人士2、使用 ChatGPT 创建表单3、使用 ChatGPT…

全国城市划分JSON数据 + 城市拼音首字母

前言 客户端开发&#xff0c;选择地址的功能很常见&#xff0c;全国城市数据网上有很多&#xff0c;但有城市拼音首字母的很少&#xff1b; 需求一&#xff1a;选择地址目录边缘有一竖排&#xff0c;A到Z的大写字母&#xff0c;这个首字母&#xff0c;就是城市拼音首字母&am…