Get Instant Help From 5000+ Experts For
question

Writing: Get your essay and assignment written from scratch by PhD expert

Rewriting: Paraphrase or rewrite your friend's essay with similar meaning at reduced cost

Editing:Proofread your work by experts and improve grade at Lowest cost

And Improve Your Grades
myassignmenthelp.com
loader
Phone no. Missing!

Enter phone no. to receive critical updates and urgent messages !

Attach file

Error goes here

Files Missing!

Please upload all relevant files for quick & complete assistance.

Guaranteed Higher Grade!
Free Quote
wave
Design and Implement a Database - Project Guidelines

Part 1 - The Data

Students will design and implement their own database based on publicly available data. Students will model the database using the models learned in class, apply techniques learned in class, and use SQL to formulate and run some queries. Group Setup Projects may be done individually or in groups of up to five. Students are free to select their own group. ONE member per group should leave a message stating all group members in the appropriate Discord channel.All students who have not assigned themselves to a group (or stated they are working alone) by October 1, 2021 will be randomly assigned to one.


Groups have been assigned. Anyone wishing to leave their group must inform the professor BEFORE October 31, 2021.Only one member per group should submit files for each part of the project. Make sure to include the names and student numbers of all members of the group in any written components.


Grading Rubric


Parts 1-3 below will be graded on two components: Concept and Execution. Concept consists of the creative decisions made by the students (e.g., what data to choose, what queries to create) and defines the upper bound of the possible grade in that section. Execution consists of the technical work required to manipulate the data (e.g., drawing an ER diagram,writing the SQL code). The best projects will have ambitious and creative concepts that are executed well.I have provided general guidelines for what will be considered an A, B, or C concept score for each section in that section,as well as a short list of the technical tasks required for the execution component. An A+ tier is not provided, as an A+ on the project would require students going above and beyond expectations in a creative way not easily quantified here.
Part 1 – The Data
Part 1.1 – Data Discovery


The first part of the project involves finding some data to analyze. One viable source is the Winnipeg Open Data portal (https://data.winnipeg.ca), though students are free to use other sources. Any kind of data is viable, but it must either be  pen for public use (e.g., under a Creative Commons license), or you must have the explicit written permission of the data’s owner to use it Data from a public source but acquired by someone other than the owner (such as a fan wiki for a video game) is acceptable, but students must acknowledge the original owner of the copyright. Students may aggregate data from several sources, but all data must ultimately be connected. Students will have to draw an ER diagram with this data (see Part 1.2), and that diagram must be a connected graph.

Part 2 - The Database


Part 1.2 – Database Design


Students must draw an ER model (including EER components, if appropriate) which represents the database they have chosen to create. The model must include participation and cardinality constraints, as well as a brief justification for each. Students are reminded that justifications should consist of explaining the “why” of constraints, not merely putting them into words (e.g., saying “not every Song is written by an Artist” is a bad justification; saying “some Songs were written by unknown Artists and thus aren’t in the Wrote table” is a better one).


Students must convert their ER model to a relational model, and then normalize that model as much as is possible according to the rules and standards discussed in class and in the lectures.A submission for this part will include the ER model and the final (post-merge and post-normalization) relational model.


Part 1 Grading Expectations


Technical Components
- Drawing an ER/EER diagram
- Justifying all participation/cardinality constraints
- Translating an ER diagram to a relational model, including merging
- Normalizing a relational model.


C Tier


- Data which ultimately breaks down into 5 or fewer tables and/or consists of a total of fewer than 100 rows
- Data centralized in one main table, with all other tables mostly being support for it
o A support table is a table that is usually small in both arity and cardinality, and is mostly used for lookup purposes (e.g., a table that just has Rank and Salary, where you can lookup a Salary based on Rank)
- An ER diagram that is weakly connected (i.e., Entities are only connected to one or two other Entities through relationships).


B Tier


- Data which breaks down into 5-10 tables and/or consists of a total of more than 100 rows
- Data centralized in two or three main tables, with other tables being support for them
- An ER diagram that is well connected (i.e., some Entities are connected to many other Entities).


A Tier


- Data which breaks down into more than 10 tables and/or consists of a total of more than 1000 rows
- Data which has a low ratio of support tables to main tables
- An ER diagram that is strongly connected (i.e., you can’t disconnect it by removing one relationship)


Part 2 – The Database


Students must create the database in DB2, including populating it with all the data. Students can implement the database in any database software of their choice (DB2, DB Browser, etc.). If students do NOT use DB2, they must submit their database file in their final project.Students are encouraged to find code-based ways to add the data records rather than entering them all manually one at a time.

Part 3 - Interaction


Part 2.2 – Database Queries


Students must think of queries which make sense (i.e., answer interesting questions a user might want to know) related to the database, and then write the SQL code necessary to answer those queries. Students must include at least one query which uses GROUP BY, at least one query which uses ORDER BY, and at least one query which uses an aggregate function.


Technical Components


- Creating a database using DDL
- Populating a database using DDL
- Writing queries in SQL

- Fewer than 10 queries, all (or most) of which are uninteresting
o An uninteresting query is one which can be easily solved by a human just looking through the data

? “Find all Pokemon with an ATK stat over 100” is an example of an uninteresting query
o Some uninteresting queries are okay (especially if they help set up more interesting ones), but students should try to minimize the amount they use.


- More than 10 queries, all (or almost all) of which are interesting.
- More than one query which uses GROUP BY, ORDER BY, and/or aggregate functions

- Using GROUP BY and aggregate functions is an easy way to add interesting-ness to queries, as they are hard for
humans to do on the fly.
- Queries must first and foremost be relevant to the data and reasonable to ask. A query that is a hundred words long and nested four layers deep might be interesting by the above definition, but it doesn’t count if it’s so specific or so convoluted that no user would ever reasonably want to know the answer.

- This is not a query optimization course. I don’t care if queries aren’t as efficient as they could possibly be, as long
as they run in a reasonable amount of time (at most a few seconds), that’s good enough.


Part 3 – Interaction


Students must create a front-end interface to their database. This can be done in any programming language (Java or
Python are recommended) and should provide a user the ability to interact with the database in specific ways. The design
of this is up to the student, so long as the following requirements are met:
1. The user cannot freely enter SQL commands (as this would be a security risk in the real world)
2. The user can access the answer to any of the queries the students thought of in Part 2
a. Given point #1, this must be a selection of some kind (dropdown, buttons, a menu, etc.).
3. The user can request the contents of any table in the database.


Technical Components


- Access a database from a programming language
o Be able to query the data and return results
- Write a user interface for database interaction


C Tier


- A command-line interface for both input and output
- Above requirements (user cannot enter SQL freely, etc.) satisfied


B Tier


- A command-line, GUI interface, or webpage for input and command line output
- Above requirements (user cannot enter SQL freely, etc.) satisfied
- No SQL visible to the user at all (all queries shown to them in English, not code)


A Tier


- A simple GUI or webpage for both input and output (no interaction on the command line at all)
- Above requirements (user cannot enter SQL freely, etc.) satisfied
- No SQL visible to the user at all (all queries shown to them in English, not code)
- An option for the user to get the output some other way (such as a CSV file with the results of a query).

support
Whatsapp
callback
sales
sales chat
Whatsapp
callback
sales chat
close