CS-2005 - Database System - Week 01 & Week # 02
CS-2005 - Database System - Week 01 & Week # 02
Fall - 2022
What’s in this course?
● Introduction to Database Systems
● Database Languages
● Entity–Relationship Modeling
● The Relational Model
● SQL: Data Manipulation
○ Select
○ Insert
○ Update
○ Delete
● SQL: Data Definition
● Introduction to Data Warehouse
Lecture Plan
● Week 01 & Week 02
○ Introduction to Database
○ Data Model
○ Schema, Mapping & Instance
○ Integrity constraints
○ Terminologies
● Week 03 & Week 04
○ Integrity Constraints & Violations
○ Intro to DML
○ Lab 01 & Lab 02
● Week 05
○ Lab # 03 Complex queries
Lecture Plan
● Week 06 & Week 07
○ Introduction to Entity Relation
○ Design Database Schema
○ Lab # 04 & Lab # 05 Design Schema
● Week 08
○ Mid-term
● Week 09 & Week 10
○ Normalization
○ Project Discussion & Proposal Submission
● Week 11 & Week 12
○ Transaction Properties
○ Lab # 06 DML & DDL
Lecture Plan
● Week 13
○ Introduction to Data Warehouse
● Week 14
○ Introduction to Nosql Database
○ Project Presentations
● Week 15
○ Project Presentations
● Week 16
○ Final Exam
Marks Breakdown & Reference Material
Marks Breakdown
● 10% Assignments
● 25% Midterm
● 15% Final Project
● 50% Final Exam
Textbook:
● Thomas Connolly, Carolyn Begg, Database Systems: A practical approach to
design, implementation and Management, 6th Edition, 2015.
Why Database?
● Purchases using your credit card
● Booking a vacation with a travel agent
● Using the local library
● Taking out insurance
● Studying at College
Traditional File-Based Systems
● An organization might have physical files set up to hold all external and
internal correspondence relating to a project, product, task, client, or
employee.
● Typically, there are many such files, and for safety they are labeled and stored
in one or more folders - logically related.
● It even works even with large numbers of items when we only have to store
and retrieve them.
● File system breaks down when we have to cross-reference or process the
information in the files.
Limitations of the File-Based Approach
● Separation and isolation of data.
● Duplication of data.
● Data dependence.
○ program–data dependence
● Security or Integrity.
● Absence of robust recovery mechanism.
● No provision for shared access.
Database Approach
● A shared collection of logically related data and its description, designed
to meet the information needs of an organization.
● Single and possibly large repository of data that can be used simultaneously
by many departments and users.
● Instead of disconnected files with redundant data, all data items are
integrated with a minimum amount of duplication.
● The database holds not only the organization’s operational data, but also a
description of this data - Metadata.
Database Approach
● Data abstraction, is that we can change the internal definition of an object
without affecting the users of the object, provided that the external definition
remains the same.
● Another expression in the definition of a database that we should explain is
“logically related.” When we analyze the information needs of an organization,
we attempt to identify entities, attributes, and relationships.
● An entity is a distinct object (a person, place, thing, concept, or event) in the
organization that is to be represented in the database. An attribute is a
property that describes some aspect of the object that we wish to record, and
a relationship is an association between entities.
The Database Management System (DBMS)
● A software system that enables users to define, create, maintain, and control
access to the database.
● It allows users to define the database, usually through a Data Definition
Language (DDL). The DDL allows users to specify the data types and
structures and the constraints on the data to be stored in the database.
● It allows users to insert, update, delete, and retrieve data from the database,
usually through a Data Manipulation Language (DML).
● The most common query language is the Structured Query Language (SQL)
which is now both the formal and de facto standard language for relational
DBMSs.
Advantages of DBMS
It provides controlled access to the database. For example,