User interface language: English | Español

Date May 2019 Marks available 2 Reference code 19M.2.SL.TZ0.1
Level SL Paper 2 Time zone no time zone
Command term Outline Question number 1 Adapted from N/A

Question

Marble Reading Book Stores (MRBS) is a chain of bookstores based in London. The stores want to keep information about the books they sell, the authors of the books and the publishers they work with. The assumptions made when the database was created were:

Three of the tables in the MRBS database are shown below:

PUBLISHER

AUTHOR

BOOK

The MRBS database undergoes many transactions.

Construct the entity-relationship diagram (ERD) for this scenario.

[2]
a.

Outline why data validation is difficult for the Book_Title attribute.

[2]
b.

State the result from the following query:

SELECT Book_Title
FROM BOOK
WHERE Genre = "Non-fiction"
AND ISBN = '0-98124-612-2'
[1]
c.

Construct a query to find the titles of the books published by “Orlando Crux”.

[4]
d.

Outline why atomicity is important within a database.

[2]
e.

Outline how data consistency can be maintained in transactions in this database system.

[2]
f.

Some data in the MRBS database is redundant.

Outline one problem caused by redundant data.

[2]
g.

Markscheme

Award [2 max].
Award [1] for correct relationship “publishes books from”.
Award [1] for correct relationship “writes”.

a.

Award [2 max].
As Book_Title attribute is String/Varchar;
It does not allow many validation checks (like range check etc.);

b.

Award [1 max].
Seeking the truth;

c.

Award [4 max].
Award [1] for selection of both Publisher_Name and Book_Title from the two respective tables.
Award [1] for making INNER JOIN of the Publisher_Name from both tables-Publisher and Author.
Award [1] for the correct test ON Author_Num from both tables-Author and Book.
Award [1] for the correct test of equity of Publisher_Name.

SELECT Publisher.Publisher_Name, Book.Book_Title FROM Author
INNER JOIN Book ON PUBLISHER. Publisher_Name =
Author.Publisher_Name, ON Author.Author_Num = Book.Author_Num
WHERE Publisher.Publisher_Name = "Orlando Crux";
d.

Award [2 max].
Helps the searching of a family name for example rather than a “like” name search;
So, making data into the smallest possible unit helps quicker searches;

e.

Award [2 max].
Each user sees a fixed view of the data;
This may include visible changes made by the user / the user's own transactions and transactions of other users;

f.

Award [2 max].
When a field value changes multiple occurrences must be updated;
For example, if a publisher moves, we’ll need to change the values for City and Country in multiple records;
Problem occurs if we forget to change the values in any of the records;
The database would then have data inconsistency;

g.

Examiners report

Most students knew how to sketch an ER diagram though some of them don’t seem to know the various relationships in it and how to apply. Some of them can draw the entities but setting the relationship was not done correctly.

a.

Most of the students understood the validations in String attributes and its challenges.

b.

The query was well understood.

c.

Most students were able to get the basic structure of the query well though some of them could not set the two tables and their relationship properly while writing the query. Also many students searched for the publisher or author code not the publisher name.

d.

Most students were able to explain atomicity though only very few students were able to refer to rollback as well.

e.

‘Data consistency’ was understood though they could not relate to the given scenario of the bookstore database.

f.

Most students gave generic answers and most of them incorrectly referred to the space redundancy that is not appropriate to this question clearly.

g.

Syllabus sections

Option A: Databases » A.1 Basic concepts
Show 21 related questions
Option A: Databases

View options