CS代写 INFO20003 Database Systems

The University of Melbourne
School of Computing and Information Systems INFO20003 Database Systems
Miscellaneous practice questions Data modelling
1. Select appropriate MySQL data types for the following pieces of information:

Copyright By PowCoder代写 加微信 powcoder

a. A person’s last name
b. The number of items purchased in a particular transaction
c. The average number of items purchased
d. A phone number
e. When a tap-and-go purchase took place
f. Whether an order has been completed or not
g. The unit price of an item at a convenience store
h. The unit price of a vehicle at a car dealership
i. A person’s gender, stored according to Australian Government guidelines – M (Male),
F (Female) or X (Indeterminate/Intersex/Unspecified)
j. A person’s Aboriginal and Islander status – Aboriginal, Islander,
both, or neither
2. Assuming that common sense applies, which one of the following ER model fragments is most believable?
is part of
Slideshow Tram
is part of
Music track
3. A student was asked to model a typical employee-department scenario by drawing a conceptual ER model in Chen’s notation. Their model, shown below, has a number of mistakes. Identify the mistakes and redraw the model correctly.
name location
Department
phone manager ID
first name
desk phone
Phone number
ID address
suburb postcode
home phone
© 2021 The University of Melbourne

INFO20003 Miscellaneous practice questions Page 2 of 12
4. Imagine you are developing a database to store information about marriages.
a. Using Chen’s notation, draw a “person” entity with appropriate attributes and a “married to” relationship that records who is currently married to whom. What type of relationship is this?
b. Based on your answer to part a, draw a model that stores not only current marriages, but also all previous marriages.
c. Based on your answer to part b, draw a model that stores all current and previous marriages, including the date of marriage and, for previous marriages, date of dissolution.
d. Can your answer to part c handle the situation where the same two people marry, divorce and later marry again? In the logical/physical model, what would you need to do to make
sure this can be accommodated?
e. In certain societies (both historical and modern), a person can be married to many people
at the same time. Does your conceptual model from part d still work? How would the
logical/physical model change?
f. Resolve all five Chen’s notation models into physical models using Crow’s foot notation.
Take particular care that your physical models for parts d and e can handle the scenarios explained in those parts.
Relational algebra
5. The following tables are part of a database for a role-playing game:
player (playerid, playername, experience) FK FK
playeritem (playerid, itemid, quantity)
item (itemid, itemname, value, weight, colour)
Write relational algebra expressions to answer the following questions:
a. List all the possible experience levels of players.
b. Show all information about gold-coloured items with a value of 20 coins.
c. List the names of players who have bought a “ ”.
d. List the names and values of items bought by players with experience level “Adventurer”
who are not named “coulter”.
e. Find names which are shared by at least one player and at least one item.
6. Consider the following tables:
FK Employee (EmployeeID, Name, Phone, DepartmentID)
Department (DepartmentID, DepartmentName, DepartmentFloor) This SQL query returns all employees who work on the fifth floor:
SELECT Name
FROM Employee NATURAL JOIN Department WHERE DepartmentFloor = 5;
Rewrite the query using the following SQL techniques:
a. INNERJOIN
b. Cross product
c. Outer join

INFO20003 Miscellaneous practice questions Page 3 of 12
7. Which two of these fragments cannot appear as part of a SELECT query?
a. SELECTCOUNT(*)
b. WHERECOUNT(*)>1 c. GROUPBYCOUNT(*) d. HAVINGCOUNT(*)>1 e. ORDERBYCOUNT(*)
8. Consider the following table definitions:
Employee (EmployeeID, EmployeeName, Phone, BuildingID, RoomNumber)
Building (BuildingID, BuildingName, NumFloors)
Not every employee is located in a room; the BuildingID and RoomNumber columns on Employee may be NULL.
Explain what is wrong with the following SQL queries, and suggest a correction. (Some of the queries contain invalid syntax, and others are technically valid but conceptually incorrect.)
a. SELECT* FROM Building
OUTER JOIN Employee ON Building.BuildingID = Employee.BuildingID;
b. SELECTEmployeeName,BuildingName
FROM Building INNER JOIN Employee;
c. SELECTEmployeeName,BuildingID FROM Building
INNER JOIN Employee ON Building.BuildingID = Employee.BuildingID;
d. SELECTEmployeeName,BuildingID,COUNT(EmployeeID) FROM Building NATURAL JOIN Employee
GROUP BY BuildingID;
e. (We were asked to find how many employees are in each occupied single-storey building.) SELECT BuildingName, COUNT(EmployeeID)
FROM Building NATURAL JOIN Employee
GROUP BY BuildingID
HAVING NumFloors = 1;
f. (We were asked to find the number of employees in every occupied building, placing taller buildings before shorter buildings in the result set.)
SELECT BuildingName, COUNT(*)
FROM Building NATURAL JOIN Employee
ORDER BY NumFloors DESC GROUP BY BuildingName;
g. (We were asked to find all buildings which are not occupied by any employees.) SELECT BuildingName
FROM Building
WHERE BuildingID NOT IN (SELECT BuildingID
FROM Employee);

INFO20003 Miscellaneous practice questions Page 4 of 12
Indexes and query cost
9. Consider the following table:
Employee (EmployeeID, Name, Age, DepartmentID)
Suppose the following three queries are executed frequently on this table:
i. SELECT Name
FROM Employee
WHERE Age > 30 AND DepartmentID = 5;
ii. SELECT EmployeeID, Name FROM Employee
WHERE Age = 65;
iii. SELECT Name, Age FROM Employee
WHERE DepartmentID = 7;
Out of the above queries, which ones (if any) could potentially make use of:
a. A clustered B-tree index on Age
b. A hash index on Age
c. A hash index on DepartmentID
d. A clustered B-tree index on (DepartmentID, EmployeeID)
e. A hash index on (EmployeeID, DepartmentID)
f. An unclustered B-tree index on (DepartmentID, Age)
10. The Employee table from question 9 has 50 data pages, with 20 tuples per page. Employees are between 25 and 65 years old, and there are 20 different departments. All indexes have 10 index pages.
a. Calculate the reduction factors for each of the three queries.
b. Compute the estimated cost of the best plan for each query, assuming that an unclustered
B-tree index on (DepartmentID, Age) is the only index available. Discuss and calculate
alternative plans.
c. Compute the estimated cost of the best plan for each query, assuming that a clustered B-
tree index on (Age, DepartmentID) is the only index available. Discuss and calculate alternative plans.
Query optimisation
11. Consider the relations:
A (Aid, …) – 2500 tuples, 10 tuples per page FK
B (Bid, Aid, …) – 300 tuples, 50 tuples per page FK
C (Cid, Bid, …) – 2000 tuples, 20 tuples per page
A clustered B+ tree index exists on the Aid column in relation A, with 100 index pages.
Assume that two passes are required to sort. For all join results, 10 tuples can be stored per page.
Calculate the cost of the following plan, and determine the final result size.

Miscellaneous practice questions
Page 5 of 12
S⋈MJ Page NLJ
A (index scan)
12. Consider the following SQL statement:
FROM Dept, Emp, Finance
WHERE Dept.did = Finance.did AND Dept.did = Emp.did;
The sorting of a relation can be done in 2 passes. A page holds 10 tuples. There are 1000 employees, with a total of 100 departments. Each department has a corresponding financial record. There is a clustered B+ tree index on Emp.did which contains 50 pages.
Calculate ⋈the cost of the following plan, and determine the final result size. SMJ
Emp (index ⋈ scan)
Normalisation
13. Consider the following relation:
MealsOrdered (OrderID, CustomerID, CustomerName, DishID, DishName, DishPrice) It has the following functional dependencies:
OrderID → CustomerID, CustomerName CustomerID → CustomerName
DishID → DishName, DishPrice
a. Label these functional dependencies as partial, transitive or neither.
b. Normalise this relation to second normal form. Write down the functional dependencies
that remain.
c. Normalise this relation to third normal form.
14. Selected rows from the OrderItem table of an online retailer are shown below.
OrderID ItemID CustomerID CustomerPostcode ItemQuantity CanDispatchFrom
4022 228 196 3212 1 Somerton
(OrderID, ItemID) is the primary key. Several functional dependencies exist on this table:
Truganina, Hallam
Somerton, NFO20003 Miscellaneous practice questions Page 6 of 12
CustomerID → CustomerPostcode
OrderID → CustomerID
OrderID, ItemID → ItemQuantity, CanDispatchFrom
Normalise the table to third normal form. Write the normalised tables in a textual format, as
15. The following table stores information about players in a sports league. Five of the rows are shown below – the actual table has many more rows.
a. Identify the violations of first normal form (1NF), second normal form (2NF), and third normal form (3NF). For each violation, clearly state which normal form is violated.
FK TableName (PrimaryKey, Column, ForeignKey)
AnotherTable (PrimaryKey, Column, AnotherColumn)
Player Name
Player Shirt Size
Team Mascots
Team Home Ground
Home Ground Location

Carlton Colts

Port Melbourne Pintos
South Arena
Hamish Baker
Carlton Colts

Richmond Racehorses
Emu, Koala

Port Melbourne Pintos
South Arena
b. Normalise the table into 3NF. Write the normalised tables in a textual format, as in: FK
TableName (PrimaryKey, Column, ForeignKey) AnotherTable (PrimaryKey, Column, AnotherColumn)
Database administration
16. Consider the original, non-normalised table from question 15. It was created using the following SQL statement:
CREATE TABLE Player (
PlayerID INT NOT NULL, PlayerName VARCHAR(50) NOT NULL, PlayerShirtSize VARCHAR(4), TeamName VARCHAR(40) NOT NULL, TeamMascots VARCHAR(40), TeamHomeGround VARCHAR(40), HomeGroundLocation VARCHAR(16), PRIMARY KEY (PlayerID)
Currently, there are 500 players in the sports league. It is predicted that 200 players will join the league, and 80 will leave, every year for the next 5 years.
Assuming that an INT value takes up 4 bytes, and that on average, a VARCHAR(n) value takes up n2 bytes, calculate the size of the player table (a) now, and (b) after 5 years.
17. Sprint Rail runs a train network that operates from 5am to midnight every day. It relies on antiquated and unreliable computer equipment, and in the all-too-frequent event of a failure, it needs to be able to restore data as quickly as possible. Data changes from hour to hour and the operators need to be able to restore the system to a state that is no more than 1 hour old.

INFO20003 Miscellaneous practice questions Page 7 of 12
Last year, an electrical fault at the Sprint Rail control centre caused the server where the backups are stored to short out. The server was destroyed, together with all the files stored on it. Luckily the main systems were running smoothly at the time, but the managers were concerned that they did not have a plan B in case a catastrophe occurred.
Suggest a backup plan for Sprint Rail. Give times when backups should be taken, and decide whether the backups should be logical or physical; online or offline; onsite or offsite; and full or incremental. Your plan could include different backup configurations at different times.
Distributed databases
18. A distributed database system is most commonly implemented using either replication or horizontal partitioning.
a. Wikipedia, the user-editable encyclopedia, uses a MySQL database as its main data store. The master database is stored in the United States, and synchronised replication is performed to a handful of other data centres. Discuss why you think Wikipedia uses a distributed database as opposed to a centralised database. Also discuss why a replication approach might have been selected for Wikipedia.
b. As of 2018, Facebook continues to use MySQL as an essential part of its database infrastructure. If you had to design a distributed relational database for a worldwide social networking site like Facebook, would you select replication or horizontal partitioning? Discuss.
Data warehousing
19. Suppose you have been hired by a furniture retailer to develop a data warehouse. (A furniture wholesaler buys or imports furniture in bulk from manufacturers and sells it to showrooms and retailers.)
The wholesaler is looking to expand its business within Australia. Some of the key performance indicators the CEO is interested in are:
• Monthly revenue growth
• Number of new customers by month
• Average number of products sold by each sales office
• Which city’s office was the top performer for state X?
• Which subcategory/category of product sold best last Month/Quarter/Year?
• What were the top 10 postcodes from which furniture was purchased?
• Were most customers from state X buying furniture for their business or for their
personal use?
• What were the top 10 postcodes that bought expensive furniture (e.g. bought a piece
of furniture which costs more than $10,000?)
a. Identify the facts and dimensions that might be relevant to this business.
b. For each dimension, suggest an appropriate grain.
c. Draw a simple star schema for this data warehouse using crow’s foot notation. You do not
need to indicate NULL/NOT NULL nor show data types. You might need to add some attributes to the dimension tables (for example, customer name).

INFO20003 Miscellaneous practice questions Page 8 of 12
Transactions and NoSQL
20. Group the following statements under the headings “transactional databases”, “NoSQL databases”, “both” or “neither”.
a. The state of the system could change over time without input.
b. Work being undertaken by one user is isolated from the work of other users.
c. The ACID principles apply.
d. The system is designed for high-level strategic decision making, rather than everyday
operational needs.
e. Many systems of this type are designed with Big Data storage in mind.
f. The user may have to wait for other users to complete their work before certain data can
be retrieved.
g. The Schema on Write approach is typically used.
h. The CAP Theorem applies.
i. It is generally less complex to create a distributed system of this type.
j. Physical backups can be carried out while the server is not running.
k. The BASE principles apply.

INFO20003 Miscellaneous practice questions Page 9 of 12
Full solutions are not provided. You’re encouraged to form a small study group and work together to solve these problems and discuss your answers.
1. Question for discussion 2. B
• A foreign key (manager ID) has wrongly been included in this conceptual model.
• Primary keys have not been underlined.
• “Phone number” has been incorrectly modelled as a separate entity, instead of attributes
on the Employee entity.
• The “address” composite attribute only contains two pieces of information – suburb and
postcode. The actual address is not stored. Redrawn model is a question for discussion
4. Note that the following answers are only one possible way of solving these scenarios.
d. The conceptual model would remain unchanged. In the logical/physical mode, “start date” (which would be an attribute of the relational entity ‘married to’) would need to be a key attribute.
e. No changes are necessary. The model from part d will work for this scenario, because the constraints were simply ‘many-to-many’ since one person might have been in many marriages over time in part b/c/d. The constraints were not detailed enough in the model to enforce the fact that ‘a person can only be on one marriage AT ONCE’. This would need to be enforced using additional database constraints (beyond scope of subject) OR by the application using the database (application layer).
f. Question for discussion
The lozenges that indicate relationships have been omitted.
date of birth
Unary relationship
married to
ID Person is ongoing? date of birth
married to
date of birth
start date
married to

INFO20003 Miscellaneous practice questions
Page 10 of 12
b. σ (item)
π (player) experience
colour = ‘gold’ ∧ value = 20 c. π (σ
(player ⋈ playeritem ⋈ item))
d. πitemname, value(σexperience = ‘Adventurer’ ∧ name != ‘coulter'(player ⋈ playeritem ⋈ item))
e. πplayername(player) ∩ πitemname(item)
6. a to e. Create the tables yourself, insert some made-up data, and check your answers.
Because ANY was not covered in labs, a solution is provided. Note that = ANY is exactly the same as writing IN:
f. SELECT Name
FROM Employee
WHERE DepartmentID = ANY (SELECT DepartmentID
FROM Department
WHERE DepartmentFloor = 5);
Employee.BuildingID
d. EmployeeNameinSELECTclauseisnotuniquelydeterminedbytheGROUPBYcolumn.
Reconsider the purpose of the query
e. HAVINGclausedoesn’tuseanyaggregatefunctions.ShouldbeWHERE
f. GROUP BY must come before ORDER BY. Reorder the clauses
g. BuildingID in Employee table may be NULL. NOT IN queries do not work correctly
when the subquery may include NULLs. Add WHERE BuildingID IS NOT NULL condition to the subquery, or switch to an outer join approach
playername itemname = ‘ ‘
OUTER JOIN is not valid MySQL syntax. Should be LEFT JOIN or RIGHT JOIN
b. INNERJOINwithnojoinconditiongivescrossproduct.AddON…clause
c. BuildingID in SELECT clause is ambiguous. Use Building.BuildingID or
i: 7 =0.04375;ii: 1 =0.025;iii: 1 =0.05 160 40 20
b. Cost of best plans: i: 45; ii: 50, iii: 50
c. Cost of best plans: i: 3; ii: 2, iii: 50
11. I/O cost = 1756, result size = 2000 tuples or 200 pages
13. a. OrderID → CustomerID, CustomerName: Partial functional dependency CustomerID → CustomerName: Transitive functional dependency DishID → DishName, DishPrice: Partial functional dependency
b. Dish (DishID, DishName, DishPrice)
Order (OrderID, CustomerID, CustomerName)
12. I/O cost = 250, result size = 1000 tuples or 100 pages

Miscellaneous practice questions
Page 11 of 12
Remaining dependency: CustomerID → CustomerName
FK FK OrderDish (OrderID, DishID)
OrderItem (OrderID, ItemID, ItemQuantity)
FK FK OrderItemDispatchLocations (OrderID, ItemID, Location)
FK Order (OrderID, CustomerID)
Customer (CustomerID, CustomerPostcode)
Dish (DishID, DishName, DishPrice) FK
Order (OrderID, CustomerID) FK FK
OrderDish (OrderID, DishID)
Customer (CustomerID, CustomerName)
Team Mascots is a multi-valued attribute (violation of 1NF, 2NF and 3NF)
Team Mascots depends on non-key attribute Team Name (3NF violation)
Team Home Ground depends on non-key attribute Team Name (3NF violation)
Home Ground Location depends on non-key attribute Team Home Ground (3NF violation)
b. Player (PlayerID, PlayerName, PlayerShirtSize, TeamName)
Team (TeamName, TeamHomeGround)
TeamMascot (TeamName, TeamMascot)
TeamHomeGround (TeamHomeGround, Location)
b. After 5 years: 108,900 bytes
Now: 49,500 bytes
17. Question for discussion
18. Question for discussion
19. Model below:

INFO20003 Miscellaneous practice questions Page 12 of 12
20. Transactional databases (only): b, c, f, g NoSQL databases (only): a, e, i, k
Both: h, j
Neither: d

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com