GithubHelp home page GithubHelp logo

cleman25 / cosc_304 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rlawrenc/cosc_304

0.0 0.0 0.0 96.73 MB

COSC 304 - Introduction to Database Systems

License: Other

JavaScript 5.94% Python 16.99% PHP 7.81% Java 30.89% HTML 13.24% Jupyter Notebook 25.13%

cosc_304's Introduction

COSC 304 - Introduction to Databases - Winter 2022 Term 1

Lecture: 6:30 to 8:00 p.m. Monday/Wednesday in ASC 140 and live-stream on Zoom
Lab: Drop-in virtual labs and help sessions

Instructor

Dr. Ramon Lawrence, ASC 349, [email protected], 250-807-9390
Office Hours: 1 to 3 p.m. Mondays or by appointment
Office Location: ASC 349 and virtual office hours on Zoom

TAs Drop-in Session Hours

Day/Time TA/Instructor
Monday 9 to 11 a.m. Eranga Desaa / Ivan Carvalho / Omar Abdelaziz
Monday 1 to 3 p.m. Dr. Ramon Lawrence
Monday 6:30 to 8 p.m. (class time) Eranga Desaa
Tuesday 2 to 4 p.m. Ivan Carvalho / Devon MacNeil
Wednesday 9 to 11 a.m. Omar Abdelaziz / Eranga Desaa
Wednesday 6:30 to 8 p.m. (class time) Devon MacNeil
Thursday 9 to 11 a.m. Omar Abdelaziz
Thursday 2 to 4 p.m. Ivan Carvalho
Friday 1 to 5 p.m. Devon MacNeil

Course Description

Official Calendar: Databases from a user's perspective: querying with SQL, designing with UML, and using programs to analyze data. Construction of database-driven applications and websites and experience with current database technologies. Completion of COSC 121 is recommended. Prerequisite: One of COSC 111, COSC 123, COSC 210. Third-year standing.

Specific description: This course provides an introduction to database systems including database querying, design, and programming. The course consists of three major components. The first component explains databases from a user perspective including how to query using SQL and relational algebra. The second component involves designing relational databases using Entity-Relationship (ER) diagrams and UML. The last part involves database and web programming with Java, JDBC, JSP, Python, and PHP. Students completing the course have experience with current database technologies, and the ability to use and develop databases and associated applications.

Course Objectives

Course Format: Interactive classes consisting of topic introduction, understanding evaluation using quick questions, and concept mastery with larger exercises. Practical skills and applications of topics covered in assignments as well as practice using industrial database systems and software.

Learning Outcomes:

  • Describe how databases provide data abstraction and simplify writing programs to store and manipulate data.
  • Create relational algebra queries on relational databases using selection, projection, join, and set operators.
  • Construct SQL CREATE TABLE, INSERT, UPDATE, DELETE, and SELECT statements including queries with multiple joins, aggregation, grouping, and subqueries. Explain the translation of a SQL query into relational algebra operators.
  • Analyze and understand existing database designs, design new databases using ER/UML modeling, and convert designs to the relational model including proper modeling of primary and foreign keys.
  • Develop programs and web sites that access a database to read data, perform analysis, and display output.
  • Use JSON and XML for data exchange and representation.
  • Execute and deploy databases on a computer using virtualization/containerization technology such as Docker.

Marking and Evaluation

Item Weighting Description
Quizzes and Exercises 10% Online and during class time activities
Assignments 25% Weekly assignments
Midterm #1 15% October 12th in class
Midterm #2 15% November 2nd in class
Final Exam 35% Cumulative, 2.5 hours, exams require a laptop
December 14, 2022 at 7:00PM in COM 201

A student must receive a combined grade of at least 50% on the exams (midterms and final) to pass the course. Otherwise, the student receives a maximum overall grade of 45.

Textbook and Reference Material

Expectations

  • Attend all classes and prepare before attending class.
  • Read the notes before the class time. Expect to spend about five hours per week in out-of-class preparation.
  • Learn the material in the course by completing all assignments. No late assignments are accepted.
  • Enjoy attending class activities and participate according to your personality. Ask questions by posting on chat or raising your hand.
  • Please actively participate in class discussions, questions, and problem solving exercises.
  • I want all students to pass the course, receive a good grade, and feel the course was beneficial.

Schedule

Date Topic Reading and Resources
Sept. 7 (W) First day of classes. Introduction to course
Introduction to databases
SQL for Web Nerds: SQL Introduction
Sept. 12 (M) Relational Model - Schemas, Keys, Constraints, Integrity
Sept. 14 (W) Relational Algebra - Select, Project, Set Ops, Outer Joins Online Relational Algebra Tool, WorksOn Data Set, Bank Data Set
Sept. 19 (M) SQL DDL – Create table/index, Insert/Delete/Update
No class due to national day of mourning
Sept. 21 (W) SQL - Queries, LIKE operator, Set Operations, Order By SQL for Web Nerds: SQL Queries
Sept. 26 (M) SQL - Group By, Aggregate Functions SQL for Web Nerds: SQL Complex Queries
Sept. 28 (W) SQL - Subqueries, Outer joins
Oct. 3 (M) Database Design – General Approach
ER and UML Modeling
Oct. 5 (W) ER and UML Modeling examples and questions
(TA will deliver class.)
Oct. 10 (M) No class due to Thanksgiving
Oct. 12 (W) Midterm Exam #1 In-Class
Oct. 17 (M) EER Design - Specialization, Generalization, Aggregation
ER/EER Mapping to Relational model
Oct. 19 (W) Database Programming using Java/JDBC Sample Java Code, JDBC Tutorial
Oct. 24 (M) Database Programming using Python and R Sample Python Code, SQL Server and pyodbc, pyodbc
pyodbc Getting Started, Python Database API, Python sqlite3
Oct. 26 (W) Database Web Programming – Web servers, JSP/PHP
(TA will deliver class.)
Sample JSP/PHP Code
Comic - Why validation is important
Oct. 31 (M) Advanced SQL DDL – Triggers
Advanced SQL DDL – Views
SQL for Web Nerds: SQL Triggers
Nov. 2 (W) Midterm Exam #2 In-Class
Nov. 7 (M) No class for Term 1 midterm break
Nov. 9 (W) No class for Term 1 midterm break
Nov. 14 (M) Advanced SQL – Security
Advanced SQL – Transactions, Recursion
MySQL Recursive Query
Nov. 16 (W) XML and XPath Sample XML Code, Intro to XML/XML Reference
XMLSchema Reference
XML Validator, Test XPath
Nov. 21 (M) JSON
NoSQL Databases
Nov. 23 (W) Normalization and Design Verification
Nov. 28 (M) Database hosting and data cleansing/wrangling Sample D3 Code
Nov. 30 (W) Data warehousing and Data Mining
304 Course Summary and Preview of COSC 404
10 Rules for Data Storage
Dec. 5 (M) Project completion
Dec. 7 (W) Final Exam Review
Dec. 14 (W) Final Exam at 7:00PM in COM 201.
Cumulative, 2.5 hours, requires a laptop.

Labs

Lab Date Topic
September 5 – 9 No Lab during First Week of Class
1 September 12 – 16 Lab 1: Querying using Relational Algebra
2 September 19 – 23 Lab 2: Creating tables using SQL and MySQL
3 September 26 – 30 Lab 3: Writing SQL queries on a MySQL database
4 October 3 – 7 Lab 4: Database Design using UML Modeling
5 October 10 – 21 Lab 5: Converting UML Diagrams into the Relational Model
6 October 24 – 28 Lab 6: Programming with Java/Python using MySQL and SQL Server
7 Oct. 31 – Nov. 4 Lab 7: Building a Database-enabled Web Site using JSP/PHP
November 7 - 11 No Lab during Midterm Break
8 November 14 – 18 Lab 8: Images, Security, and Transactions
9 November 21 – 25 Lab 9: XML, JSON, Views, and Triggers
10 Nov. 28 – Dec. 2 Lab 10: Project Completion

Missing an Exam

Only students who miss the final exam for a reason that corresponds to the University of British Columbia Okanagan's policy on excused absences from examinations will be permitted to take the final exam at a later time. A make-up exam may have a question format different from the regular exam. There will be no make-up midterm exams. If the reason for absence is satisfactory, the student’s final exam will be worth more of the final grade. Further information on Academic Concession is in the Academic Calendar http://www.calendar.ubc.ca/okanagan/index.cfm?tree=3,48,0,0.

Copyright Disclaimer

Diagrams and figures included in lecture presentations adhere to Copyright Guidelines for UBC Faculty, Staff and Students http://copyright.ubc.ca/requirements/copyright-guidelines/ and UBC Fair Dealing Requirements for Faculty and Staff http://copyright.ubc.ca/requirements/fair-dealing/. Some of these figures and images are subject to copyright and will not be posted to Connect. All material uploaded to Connect that contain diagrams and figures are used with permission of the publisher; are in the public domain; are licensed by Creative Commons; meet the permitted terms of use of UBC’s library license agreements for electronic items; and/or adhere to the UBC Fair Dealing Requirements for Faculty and Staff. Access to the Connect course site is limited to students currently registered in this course. Under no circumstance are students permitted to provide any other person with means to access this material. Anyone violating these restrictions may be subject to legal action. Permission to electronically record any course materials must be granted by the instructor. Distribution of this material to a third party is forbidden.

Grievances and Complaints Procedures

A student who has a complaint related to this course should follow the procedures summarized below:

  • The student should attempt to resolve the matter with the instructor first. Students may talk first to someone other than the instructor if they do not feel, for whatever reason, that they can directly approach the instructor.
  • If the complaint is not resolved to the student's satisfaction, the student should e-mail the Associate Head, Dr. Yves Lucet at [email protected] or the Department Head, Dr. John Braun at [email protected].

Your Responsibilities

Your responsibilities to this class and to your education as a whole include attendance and participation. You have a responsibility to help create a classroom environment where all may learn. At the most basic level, this means you will respect the other members of the class and the instructor and treat them with the courtesy you hope to receive in return. Inappropriate classroom behavior may include: disruption of the classroom atmosphere, engaging in non-class activities, talking on a cell-phone, inappropriate use of profanity in classroom discussion, use of abusive or disrespectful language toward the instructor, a student in the class, or about other individuals or groups.

Academic Integrity

The academic enterprise is founded on honesty, civility, and integrity.  As members of this enterprise, all students are expected to know, understand, and follow the codes of conduct regarding academic integrity.  At the most basic level, this means submitting only original work done by you and acknowledging all sources of information or ideas and attributing them to others as required.  This also means you should not cheat, copy, or mislead others about what is your work.  Violations of academic integrity (i.e., misconduct) lead to the breakdown of the academic enterprise, and therefore serious consequences arise and harsh sanctions are imposed.  For example, incidences of plagiarism or cheating may result in a mark of zero on the assignment or exam and more serious consequences may apply if the matter is referred to the President’s Advisory Committee on Student Discipline.  Careful records are kept in order to monitor and prevent recurrences. A more detailed description of academic integrity, including the policies and procedures, may be found: http://okanagan.students.ubc.ca/calendar/index.cfm?tree=3,54,111,0 If you have any questions about how academic integrity applies to this course, please consult with your professor.

Academic Integrity Course Policies

Academic integrity is critical to being a professional developer and a respected person. This is a guide to what is and is not acceptable behaviors in this course.

In-Class Participation and Quizzes and Teamwork Collaboration

Allowed

  • Collaboration in groups of up to 4 on Canvas quizzes and in-class exercises

Not Allowed

  • One person providing all answers for a quiz/exercise to a group of people of any size
  • Sharing, posting, or distributing answers to other students or websites for quizzes/exercises
  • Answering questions for another student or submitting answers on their behalf
  • Requesting help from previous students in the course or other individuals outside of the course
  • Relying on others to do work for me or not contributing reasonable effort to group activities
  • Dividing up the work for a quiz or exercise between members of an approved group (Not Recommended)

Assignments

Allowed

  • Collaborating with your approved group members (usually two) and submitting a shared answer to the assignment
  • Request help from the TA or instructor and use the answer/code that they provide
  • Answer general questions about assignments in chat or discussion forums (Allowed with care)

Not Allowed

  • Working on an individual assignment with a group of people and submitting minor variations of work developed together
  • For group assignment, completing all work independently and providing answer to rest of group
  • Sharing solutions to assignments with other students or on the Internet
  • Receiving solutions to assignments from other sources (students, web, tutors)

Exams

Allowed

  • Using course material including assignments, notes, and quizzes in an open book exam

Not Allowed

  • Using any non-approved resource (people, web, etc.) for exams (severe)
  • Allowing another person to write or complete any part of any exam (severe)
  • Posting or providing answers to students who have not yet completed the exam
  • Requesting help from other people or web services for open book exams
  • Posting or providing exam questions and answers after exam has been completed

Grading Practices

Faculties, departments, and schools reserve the right to scale grades in order to maintain equity among sections and conformity to University, faculty, department, or school norms. Students should therefore note that an unofficial grade given by an instructor might be changed by the faculty, department, or school. Grades are not official until they appear on a student's academic record. http://www.calendar.ubc.ca/okanagan/index.cfm?tree=3,41,90,1014 If you have any questions about how academic integrity applies to this course, please consult with your professor.

Disability Resource Centre

The Disability Resource Centre ensures educational equity for students with disabilities and chronic medical conditions. If you are disabled, have an injury or illness and require academic accommodations to meet the course objectives, please contact Earllene Roberts, the Diversity Advisor for the Disability Resource Centre located in the University Centre building (UNC 215). Ph: 250.807.9263 Email: [email protected]  Web: https://students.ok.ubc.ca/drc

Equity and Inclusion Office

Through leadership, vision, and collaborative action, the Equity & Inclusion Office (EIO) develops action strategies in support of efforts to embed equity and inclusion in the daily operations across the campus. The EIO provides education and training from cultivating respectful, inclusive spaces and communities to understanding unconscious/implicit bias and its operation within in campus environments. UBC Policy 3 prohibits discrimination and harassment on the basis of BC’s Human Rights Code. If you require assistance related to an issue of equity, educational programs, discrimination or harassment please contact the EIO. Office: UNC 325H Ph: 250.807.9291 Email: [email protected]  Web: https://equity.ok.ubc.ca

Office of the Ombudsperson for Students 

The Office of the Ombudsperson for Students is an independent, confidential and impartial resource to ensure students are treated fairly. The Ombuds Office helps students navigate campus-related fairness concerns. They work with UBC community members individually and at the systemic level to ensure students are treated fairly and can learn, work and live in a fair, equitable and respectful environment. Ombuds helps students gain clarity on UBC policies and procedures, explore options, identify next steps, recommend resources, plan strategies and receive objective feedback to promote constructive problem solving. If you require assistance, please feel free to reach out for more information or to arrange an appointment.  Office: UNC 328 Ph: 250.807.9818 Email: [email protected]   Web: https://ombudsoffice.ubc.ca

Sexual Violence Prevention and Response Office (SVPRO)

A safe and confidential place for UBC students, staff and faculty who have experienced sexual violence regardless of when or where it took place. Just want to talk? We are here to listen and help you explore your options. We can help you find a safe place to stay, explain your reporting options (UBC or police), accompany you to the hospital, or support you with academic accommodations. You have the right to choose what happens next. We support your decision, whatever you decide. Visit svpro.ok.ubc.ca or call us at 250.807.9640.

Independent Investigations Office (IIO)

If you or someone you know has experienced sexual assault or some other form of sexual misconduct by a UBC community member and you want the Independent Investigations Office (IIO) at UBC to investigate, please contact the IIO. Investigations are conducted in a trauma informed, confidential and respectful manner in accordance with the principles of procedural fairness. You can report your experience directly to the IIO by calling 604-827-2060. Web:  https://investigationsoffice.ubc.ca E-mail: [email protected]

Student Learning Hub 

The Student Learning Hub (LIB 237) is your go-to resource for free math, science, writing, and language learning support. The Hub welcomes undergraduate students from all disciplines and year levels to access a range of supports that include tutoring in math, sciences, languages, and writing, as well as help with study skills and learning strategies. For more information, please visit the Hub’s website https://students.ok.ubc.ca/student-learning-hub or call 250-807-9185. 

Student Wellness  

At UBC Okanagan health services to students are provided by Student Wellness.  Nurses, physicians and counsellors provide health care and counselling related to physical health, emotional/mental health and sexual/reproductive health concerns. As well, health promotion, education and research activities are provided to the campus community.  If you require assistance with your health, please contact Student Wellness for more information or to book an appointment. 

UNC 337 250.807.9270  email: [email protected]  Web: https://students.ok.ubc.ca/health-wellness

SAFEWALK

Don't want to walk alone at night? Not too sure how to get somewhere on campus? Call Safewalk at 250-807-8076. For more information: https://security.ok.ubc.ca/safewalk or download the UBC SAFE – Okanagan app.

Reference Material

cosc_304's People

Contributors

rlawrenc avatar youry avatar taifanjum avatar brikwerk avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.