Starting from:

$30

CSC343-Assignment 1 Database design and implementation and Embedded SQL Solved

Part 1. Database design and implementation
1.1. Create an E/R diagram of the CEA database

1.2. Convert this diagram into a relational schema. Specify all basic attribute types. Specify all primary keys. 

1.3. Think of and list all required value constraints on course codes, department codes, start and end dates, course grades, year, ranking, semester, time of day, gender, and anything else you can think of to prevent inconsistent data from being added to the database. 

1.4. Convert your logical CEA schema into a physical schema - set of tables with constraints - using the PostgreSQL DBMS. Learn how to create new data types such as domains and enums and apply this knowledge to restrict the domains of each data column.

1.5. Now, recall all the courses you have taken so far, and write and run SQL insert statements for inserting data about departments, courses and the instructors you encountered during your study at UofT. 

1.6. Write all the required insert statements to enter complete information for two students (you and your project partner). 

1.7. After this task is complete, convert your physical schema into an equivalent schema for SQLite. Record and report all the difficulties that you encountered during this process. Are there any constraints that you were not able to enforce in SQLite? 

1.8. If you performed tasks 1.5 -1.6 accurately, the same insert statements should also work for SQLite. Insert your initial data into an SQLite database using your sql script for insertions.

 

                

Part 2. SQL embedded into a JDBC application
2.1. Create a Java application which provides an interface to enter user experiences into an SQLite version of the CEA database. A student who was previously added to the database, should be able to identify himself, to select a course from a list of available courses, and to insert all the experiences described in the specification.

2.2. Use the interface (either GUI or TUI) to truthfully and accurately record your own experiences about each course you have taken. 

2.3. In order to perform meaningful data analytics in the second assignment, we will combine all the information you entered into a single database. Towards this goal, write an export utility which will perform basic select-project-join operations on all your data tables, and will output the data as a single report in a (comma-separated) csv format. 

Each row in this table should contain complete information about a particular (course edition – user name pair). The column headers are as follows (be precise):

•        Course number (with department code)

•        Course start date

•        Course end date

•        Time of day

•        Total number of students

•        Name of the course instructor(s): one or many delimited by |

•        Student user name

•        Course grade

•        Student age

•        Student year and month of birth, space delimited

•        Student gender

•        Student country of birth

•        List of skills acquired outside academia in form of skill-rank pair, delimited by |

•        Student start date at the University

•        Course satisfaction

•        Instructor ranking

•        List of skills learned in the course: in form of skill - rank before- rank after, delimited by |

•        List of topics learned in the course: in form of topic-interest before-interest after, delimited by |

All the rankings are numeric on the scale 1-5 (5 is the highest)

More products