Database Management Systems (DBMS)

Slides:



Advertisements
Similar presentations
Relationships Relational Database. Identifying Entities… In the previous tutorial you learnt about identifying entities in a flat file database. Also.
Advertisements

Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Monash University Week 7 Data Modelling Relational Database Theory IMS1907 Database Systems.
The Relational Model Chapter Two. 2 Chapter Objectives Learn the conceptual foundation of the relational model Learn the conceptual foundation of the.
The Database Approach u Emphasizes the integration of data across the organization.
CSCI 260 Database Applications Chapter 1 – Getting Started.
Database Design Conceptual –identify important entities and relationships –determine attribute domains and candidate keys –draw the E-R diagram Logical.
CSCI 150 Database Applications Chapter 1 – Getting Started.
Introduction to Databases CIS 5.2. Where would you find info about yourself stored in a computer? College Physician’s office Library Grocery Store Dentist’s.
Getting Started Chapter One DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 5 th Edition.
Getting Started Chapter One DATABASE CONCEPTS, 7th Edition
Database – Part 2a Dr. V.T. Raja Oregon State University.
Databases & Data Warehouses Chapter 3 Database Processing.
N. J. Taylor Database Management Systems (DBMS) 1.
Getting Started Chapter One DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 6 th Edition.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
Normalization (Codd, 1972) Practical Information For Real World Database Design.
Concepts of Relational Databases. Fundamental Concepts Relational data model – A data model representing data in the form of tables Relations – A 2-dimensional.
IST 210: ORGANIZATION OF DATA Chapter 1. Getting Started IST210 1.
The Relational Model Chapter Two DAVID M. KROENKE’S DATABASE CONCEPTS, 2 nd Edition.
Getting Started Chapter One DAVID M. KROENKE’S DATABASE CONCEPTS, 2 nd Edition.
System Design System Design - Mr. Ahmad Al-Ghoul System Analysis and Design.
Database Systems, 9th Edition 1.  In this chapter, students will learn: That the relational database model offers a logical view of data About the relational.
Relational Theory and Design
Getting Started Chapter One DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 4 th Edition.
Information Systems Today: Managing in the Digital World TB3-1 3 Technology Briefing Database Management “Modern organizations are said to be drowning.
Planning & Creating a Database By Ms. Naira Microsoft Access.
The relational model A data model (in general) : Integrated collection of concepts for describing data (data requirements). Relational model was introduced.
The Relational Model Chapter Two DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 4 th Edition.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 3 The Relational Database Model.
Chapter 3 The Relational Database Model. Database Systems, 10th Edition 2 * Relational model * View data logically rather than physically * Table * Structural.
CHAPTER 2 : RELATIONAL DATA MODEL Prepared by : nbs.
Chapter 4, Part A: Logical Database Design and the Relational Model
Lecture 4: Logical Database Design and the Relational Model 1.
Chapter 1. Getting Started IST 210: Organization of Data IST2101.
Database Constraints ICT 011. Database Constraints Database constraints are restrictions on the contents of the database or on database operations Database.
CompSci 280 S Introduction to Software Development
New Perspectives on Microsoft Access 2016
Logical Database Design and the Rational Model
Chapter 4 Logical Database Design and the Relational Model
Client/Server Databases and the Oracle 10g Relational Database
The Relational Database Model
Introduction to Databases by Dr. Soper extended with more examples
The Relational Model and Database Normalization
The Relational Model Chapter Two DATABASE CONCEPTS, 3rd Edition
Information Systems Today: Managing in the Digital World
and Defining Table Relationships
Chapter 5: Logical Database Design and the Relational Model
Lecture 2 The Relational Model
CSCI-100 Introduction to Computing
Database Systems Instructor Name: Lecture-12.
Database Normalization
What is a Database and Why Use One?
Entity Relationships and Normalization
Chapter 3 The Relational Database Model
Relational Database.
The 1:M Relationship (continued)
Database Fundamentals
Session 2 Welcome: The seventh learning sequence
Normalization of Database Tables Uploaded by: mysoftbooks.ml
Database solutions Chosen aspects of the relational model Marzena Nowakowska Faculty of Management and Computer Modelling Kielce University of Technology.
Databases and Information Management
Data Management Innovations 2017 High level overview of DB
Copyright © 2018, 2015, 20 Pearson Education, Inc. All Rights Reserved Database Concepts Eighth Edition Chapter # 2 The Relational Model.
logical design for relational database
Getting Started Chapter One DATABASE CONCEPTS, 5th Edition
Databases 1.
Chapter 4 The Relational Model and Normalization
Getting Started Chapter One DATABASE CONCEPTS, 4th Edition
DATABASE Purpose of database
Presentation transcript:

Database Management Systems (DBMS) N. J. Taylor

Learning Objectives Understand how related tables avoid the problems of lists and spreadsheets Learn the components of database system Learn the purpose of the database management system (DBMS)

Problems with Lists: Redundancy In a list, each row is intended to stand on its own. As a result, the same information may be entered several times (i.e., redundancy)

Problems with Lists: Multiple Themes In a list, each row may contain information on more than one “theme”. As a result, needed information may appear in the lists only if information on other themes is also present This table includes information on the Sales Order, Items, and Customer Inter. Bicycle Sales information would not be available without SO #1013

List Modification Issues Redundancy and multiple themes create modification problems Deletion problems If we delete SO #1013 we lose our customer IBS Update problems If customer “Bikes Et Cetera” changes its name we have to make sure we change it in every single row. Insertion problems If we want to add a new customer, we must either wait until they place an order or (worse) make up a bogus sales order

List Modification Issues DELETE No SO #1013, no IBS UPDATE Need to change Et Cetera to etc. INSERT Blank fields may cause problems later

Relational Databases A relational database stores information in tables. Each informational theme is stored in its own table In essence, a relational database will break-up a list into several parts. One part for each theme in the list This is similar to a Web page Rather than paste the information from another source into our page, it can be linked instead. The updates are done on the linked page. We just need to make sure that our link to it is valid

DBMS Benefits Though a relational database is more complicated than a list, it protects us from data anomalies (insert, update, and delete) Furthermore, a relational database provides a solid foundation for user forms and reports

Components of a Database System

“Key” terms An entity is something of importance to a user that needs to be represented in a database An entity represents one theme or topic and is represented by a table. The table dimensions, like a matrix, consist of rows (tuples) and columns (attributes) Nolan J. Taylor - A337

A Key A (primary) key is one (or more) columns of a relation that is (are) used to identify a row A composite key is a key that contains two or more attributes For a key to be unique, it is sometimes necessary to use a composite key Can also generate a set of unique values to serve as the key (for example University ID numbers)

A Foreign Key A table may be related to other tables (i.e., a relationship) To create relationships, you may need to create a foreign key A foreign key is a primary key from one table placed into another table Referential integrity - every value of a foreign key must match a value of an existing primary key Nolan J. Taylor - A337

Foreign Key Example Project Proj_Num Proj_Name MgrID Manager MgrID MgrName Primary Key Relationship Foreign Key

Functional Dependency A relationship between attributes in which one or more attributes determines the value of another attribute(s) in the same table The Proj_Num “determines” the Proj_Name