SlideShare a Scribd company logo
1 of 54
Relational Databases
Week 9
INFM 603
Agenda
• Questions
• Relational database design
• Microsoft Access
• MySQL
• Scalability
Databases
• Database
– Collection of data, organized to support access
– Models some aspects of reality
• DataBase Management System (DBMS)
– Software to create and access databases
• Relational Algebra
– Special-purpose programming language
Structured Information
• Field An “atomic” unit of data
– number, string, true/false, …
• Record A collection of related fields
• Table A collection of related records
– Each record is one row in the table
– Each field is one column in the table
• Primary Key The field that identifies a record
– Values of a primary key must be unique
• Database A collection of tables
A Simple Example
primary key
Registrar Example
• Which students are in which courses?
• What do we need to know about the students?
– first name, last name, email, department
• What do we need to know about the courses?
– course ID, description, enrolled students, grades
A “Flat File” Solution
Discussion Topic
Why is this a bad approach?
Student ID Last Name First Name Department IDDepartmentCourse IDCourse description Grades email
1 Arrows John EE EE lbsc690 Information Technology 90 jarrows@wam
1 Arrows John EE Elec Engin ee750 Communication 95 ja_2002@yahoo
2 Peters Kathy HIST HIST lbsc690 Informatino Technology 95 kpeters2@wam
2 Peters Kathy HIST history hist405 American History 80 kpeters2@wma
3 Smith Chris HIST history hist405 American History 90 smith2002@glue
4 Smith John CLIS Info Sci lbsc690 Information Technology 98 js03@wam
Goals of “Normalization”
• Save space
– Save each fact only once
• More rapid updates
– Every fact only needs to be updated once
• More rapid search
– Finding something once is good enough
• Avoid inconsistency
– Changing data once changes it everywhere
Relational Algebra
• Tables represent “relations”
– Course, course description
– Name, email address, department
• Named fields represent “attributes”
• Each row in the table is called a “tuple”
– The order of the rows is not important
• Queries specify desired conditions
– The DBMS then finds data that satisfies them
A Normalized Relational Database
Department ID Department
EE Electronic Engineering
HIST History
CLIS Information Stuides
Course ID Course Description
lbsc690 Information Technology
ee750 Communication
hist405 American History
Student ID Course ID Grades
1 lbsc690 90
1 ee750 95
2 lbsc690 95
2 hist405 80
3 hist405 90
4 lbsc690 98
Student ID Last Name First Name Department ID email
1 Arrows John EE jarrows@wam
2 Peters Kathy HIST kpeters2@wam
3 Smith Chris HIST smith2002@glue
4 Smith John CLIS js03@wam
Student Table
Department Table Course Table
Enrollment Table
Approaches to Normalization
• For simple problems
– Start with “binary relationships”
• Pairs of fields that are related
– Group together wherever possible
– Add keys where necessary
• For more complicated problems
– Entity relationship modeling
Example of Join
Student ID Last Name First Name Department ID email
1 Arrows John EE jarrows@wam
2 Peters Kathy HIST kpeters2@wam
3 Smith Chris HIST smith2002@glue
4 Smith John CLIS js03@wam
Student Table
Department ID Department
EE Electronic Engineering
HIST History
CLIS Information Stuides
Department Table
Student ID Last Name First Name Department IDDepartment email
1 Arrows John EE Electronic Engineering jarrows@wam
2 Peters Kathy HIST History kpeters2@wam
3 Smith Chris HIST History smith2002@glue
4 Smith John CLIS Information Stuides js03@wam
“Joined” Table
Problems with Join
• Data modeling for join is complex
– Useful to start with E-R modeling
• Join are expensive to compute
– Both in time and storage space
• But it’s joins that make databases relational
– Projection and restriction also used in flat files
Some Lingo
• “Primary Key” uniquely identifies a record
– e.g. student ID in the student table
• “Compound” primary key
– Synthesize a primary key with a combination of fields
– e.g., Student ID + Course ID in the enrollment table
• “Foreign Key” is primary key in the other table
– Note: it need not be unique in this table
Project
Student ID Last Name First Name Department IDDepartment email
1 Arrows John EE Electronic Engineering jarrows@wam
2 Peters Kathy HIST History kpeters2@wam
3 Smith Chris HIST History smith2002@glue
4 Smith John CLIS Information Stuides js03@wam
New Table
Student ID Department
1 Electronic Engineering
2 History
3 History
4 Information Stuides
SELECT Student ID, Department
Restrict
Student ID Last Name First Name Department IDDepartment email
2 Peters Kathy HIST History kpeters2@wam
3 Smith Chris HIST History smith2002@glue
Student ID Last Name First Name Department IDDepartment email
1 Arrows John EE Electronic Engineering jarrows@wam
2 Peters Kathy HIST History kpeters2@wam
3 Smith Chris HIST History smith2002@glue
4 Smith John CLIS Information Stuides js03@wam
New Table
WHERE Department ID = “HIST”
Entity-Relationship Diagrams
• Graphical visualization of the data model
• Entities are captured in boxes
• Relationships are captured using arrows
Registrar ER Diagram
Enrollment
Student
Course
Grade
…
Student
Student ID
First name
Last name
Department
E-mail
…
Course
Course ID
Course Name
…
Department
Department ID
Department Name
…
has
has associated with
Getting Started with E-R Modeling
• What questions must you answer?
• What data is needed to generate the
answers?
– Entities
• Attributes of those entities
– Relationships
• Nature of those relationships
• How will the user interact with the system?
– Relating the question to the available data
“Project Team” E-R Example
student team
implement-role
member-of
project
creates
manage-role
php-project ajax-project
d
1
M
M
1
1
1
human
client needs
M 1
Components of E-R Diagrams
• Entities
– Types
• Subtypes (disjoint / overlapping)
– Attributes
• Mandatory / optional
– Identifier
• Relationships
– Cardinality
– Existence
– Degree
Types of Relationships
1-to-11-to-ManyMany-to-Many
Making Tables from E-R Diagrams
• Pick a primary key for each entity
• Build the tables
– One per entity
– Plus one per M:M relationship
– Choose terse but memorable table and field names
• Check for parsimonious representation
– Relational “normalization”
– Redundant storage of computable values
• Implement using a DBMS
• 1NF: Single-valued indivisible (atomic) attributes
– Split “Doug Oard” to two attributes as (“Doug”, “Oard”)
– Model M:M implement-role relationship with a table
• 2NF: Attributes depend on complete primary key
– (id, impl-role, name)->(id, name)+(id, impl-role)
• 3NF: Attributes depend directly on primary key
– (id, addr, city, state, zip)->(id, addr, zip)+(zip, city, state)
• 4NF: Divide independent M:M tables
– (id, role, courses) -> (id, role) + (id, courses)
• 5NF: Don’t enumerate derivable combinations
Normalized Table Structure
• Persons: id, fname, lname, userid, password
• Contacts: id, ctype, cstring
• Ctlabels: ctype, string
• Students: id, team, mrole
• Iroles: id, irole
• Rlabels: role, string
• Projects: team, client, pstring
Making Tables from E-R Diagrams
• Pick a primary key for each entity
• Build the tables
– One per entity
– Plus one per M:M relationship
– Choose terse but memorable table and field names
• Check for parsimonious representation
– Relational “normalization”
– Redundant storage of computable values
• Implement using a DBMS
Database Integrity
• Registrar database must be internally consistent
– Enrolled students must have an entry in student table
– Courses must have a name
• What happens:
– When a student withdraws from the university?
– When a course is taken off the books?
Integrity Constraints
• Conditions that must always be true
– Specified when the database is designed
– Checked when the database is modified
• RDBMS ensures integrity constraints are respected
– So database contents remain faithful to real world
– Helps avoid data entry errors
Referential Integrity
• Foreign key values must exist in other table
– If not, those records cannot be joined
• Can be enforced when data is added
– Associate a primary key with each foreign key
• Helps avoid erroneous data
– Only need to ensure data quality for primary keys
Database “Programming”
• Natural language
– Goal is ease of use
• e.g., Show me the last names of students in CLIS
– Ambiguity sometimes results in errors
• Structured Query Language (SQL)
– Consistent, unambiguous interface to any DBMS
– Simple command structure:
• e.g., SELECT Last name FROM Students WHERE Dept=CLIS
– Useful standard for inter-process communications
• Visual programming (e.g., Microsoft Access)
– Unambiguous, and easier to learn than SQL
Using Microsoft Access
• Create a database called M:rides.mdb
– File->New->Blank Database
• Specify the fields (columns)
– “Create a Table in Design View”
• Fill in the records (rows)
– Double-click on the icon for the table
Creating Fields
• Enter field name
– Must be unique, but only within the same table
• Select field type from a menu
– Use date/time for times
– Use text for phone numbers
• Designate primary key (right mouse button)
• Save the table
– That’s when you get to assign a table name
Entering Data
• Open the table
– Double-click on the icon
• Enter new data in the bottom row
– A new (blank) bottom row will appear
• Close the table
– No need to “save” – data is stored automatically
Building Queries
• Copy ride.mdb to your C: drive
• “Create Query in Design View”
– In “Queries”
• Choose two tables, Flight and Company
• Pick each field you need using the menus
– Unclick “show” to not project
– Enter a criterion to “restrict”
• Save, exit, and reselect to run the query
Fun Facts about Queries
• Joins are automatic if field names are same
– Otherwise, drag a line between the fields
• Sort order is easy to specify
– Use the menu
The SQL SELECT Command
• Project chooses columns
– Based on their label
• Restrict chooses rows
– Based on their contents
• e.g. department ID = “HIST”
• These can be specified together
– SELECT Student ID, Dept WHERE Dept = “History”
Restrict Operators
• Each SELECT contains a single WHERE
• Numeric comparison
<, >, =, <>, …
• e.g., grade<80
• Boolean operations
– e.g., Name = “John” AND Dept <> “HIST”
Structured Query Language
DESCRIBE Flight;
Structured Query Language
SELECT * FROM Flight;
Structured Query Language
SELECT Company.CompanyName, Company.CompanyPhone,
Flight.Origin, Flight.DepartureTime
FROM Flight,Company
WHERE Flight.CompanyName=Company.CompanyName
AND Flight.AvailableSeats>3;
select address
from employee
where employee.surname='Smith' and
employee.forenames='Robert';
field
table
how you want to restrict the rows
select dname
from employee, department
where employee.depno=department.depno
and surname='Smith' and
forenames='Robert';
field
tables to join
how you want to restrict the rows
how to join
Create a MySQL Database
• “root” user creates database + grants permissions
– Using the WAMP console (or mysql –u root –p)
• root has no initial password; just hit <enter> when asked
– By the system administrator account
CREATE DATABASE project;
GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, DROP ON
project.* TO ‘foo’@’localhost’ IDENTIFIED BY ‘bar’;
FLUSH PRIVILEGES;
• Start mysql
– MySQL console for WAMP: mysql –u foo –p bar
• Connect to your database
USE project;
Creating Tables
CREATE TABLE contacts (
ckey MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT,
id MEDIUMINT UNSIGNED NOT NULL,
ctype SMALLINT UNSIGNED NOT NULL,
cstring VARCHAR(40) NOT NULL,
FOREIGN KEY (id) REFERENCES persons(id) ON DELETE CASCADE,
FOREIGN KEY (ctype) REFERENCES ctlabels(ctype) ON DELETE RESTRICT,
PRIMARY KEY (ckey)
) ENGINE=INNODB;
To delete: DROP TABLE contacts;
Populating Tables
INSERT INTO ctlabels
(string) VALUES
('primary email'),
('alternate email'),
('home phone'),
('cell phone'),
('work phone'),
('AOL IM'),
('Yahoo Chat'),
('MSN Messenger'),
(‘other’);
 To empty a table: DELETE FROM ctlabels;
“Looking Around” in MySQL
• SHOW DATABASES;
• SHOW TABLES;
• DESCRIBE tablename;
• SELECT * FROM tablename;
Databases in the Real World
• Some typical database applications:
– Banking (e.g., saving/checking accounts)
– Trading (e.g., stocks)
– Airline reservations
• Characteristics:
– Lots of data
– Lots of concurrent access
– Must have fast access
– “Mission critical”
Source: Technology Review (July/August, 2008)
Database layer: 800 eight-core Linux servers running
MySQL (40 TB user data)
Caching servers: 15 million requests per second, 95%
handled by memcache (15 TB of RAM)
Concurrency
• Thought experiment: You and your project
partner are editing the same file…
– Scenario 1: you both save it at the same time
– Scenario 2: you save first, but before it’s done
saving, your partner saves
Whose changes survive?
A) Yours B) Partner’s C) neither D) both E) ???
Concurrency Example
• Possible actions on a checking account
– Deposit check (read balance, write new balance)
– Cash check (read balance, write new balance)
• Scenario:
– Current balance: $500
– You try to deposit a $50 check and someone tries
to cash a $100 check at the same time
– Possible sequences: (what happens in each case?)
Deposit: read balance
Deposit: write balance
Cash: read balance
Cash: write balance
Deposit: read balance
Cash: read balance
Cash: write balance
Deposit: write balance
Deposit: read balance
Cash: read balance
Deposit: write balance
Cash: write balance
Database Transactions
• Transaction: sequence of grouped database actions
– e.g., transfer $500 from checking to savings
• “ACID” properties
– Atomicity
• All-or-nothing
– Consistency
• Each transaction must take the DB between consistent states.
– Isolation:
• Concurrent transactions must appear to run in isolation
– Durability
• Results of transactions must survive even if systems crash
Making Transactions
• Idea: keep a log (history) of all actions carried
out while executing transactions
– Before a change is made to the database, the
corresponding log entry is forced to a safe location
• Recovering from a crash:
– Effects of partially executed transactions are undone
– Effects of committed transactions are redone
the log
Utility Service Desk Exercise
• Design a database to keep track of service calls
for a utility company:
– Customers call to report problems
– Call center manages “tickets” to assign workers to jobs
• Must match skills and service location
• Must balance number of assignments
– Workers call in to ask where their next jobs are
• In SQL, you can do the following operations:
– Count the number of rows in a result set
– Sort the result set according to a field
– Find the maximum and minimum value of a field
Key Ideas
• Databases are a good choice when you have
– Lots of data
– A problem that contains inherent relationships
• Join is the most important concept
– Project and restrict just remove undesired stuff
• Design before you implement
– Managing complexity is important

More Related Content

What's hot (13)

My sql
My sqlMy sql
My sql
 
Webinar 11-13-14 - DIY E-Resources Management: Basics of Information Architec...
Webinar 11-13-14 - DIY E-Resources Management: Basics of Information Architec...Webinar 11-13-14 - DIY E-Resources Management: Basics of Information Architec...
Webinar 11-13-14 - DIY E-Resources Management: Basics of Information Architec...
 
SQL Fundamentals (Oracle 11g) - Lecture 1
SQL Fundamentals (Oracle 11g) - Lecture 1SQL Fundamentals (Oracle 11g) - Lecture 1
SQL Fundamentals (Oracle 11g) - Lecture 1
 
Types of keys in database management system by Dr. Kamal Gulati
Types of keys in database management system by Dr. Kamal GulatiTypes of keys in database management system by Dr. Kamal Gulati
Types of keys in database management system by Dr. Kamal Gulati
 
Rdbms
RdbmsRdbms
Rdbms
 
Database management systems 3 - Data Modelling
Database management systems 3 - Data ModellingDatabase management systems 3 - Data Modelling
Database management systems 3 - Data Modelling
 
The relational database model
The relational database modelThe relational database model
The relational database model
 
Introduction to tree ds
Introduction to tree dsIntroduction to tree ds
Introduction to tree ds
 
Related Worksheets
Related WorksheetsRelated Worksheets
Related Worksheets
 
UVA MDST 3703 Marking-Up a Text 2012-09-13
UVA MDST 3703 Marking-Up a Text 2012-09-13UVA MDST 3703 Marking-Up a Text 2012-09-13
UVA MDST 3703 Marking-Up a Text 2012-09-13
 
Database Management & Models
Database Management & ModelsDatabase Management & Models
Database Management & Models
 
Data Architect
Data ArchitectData Architect
Data Architect
 
Data Models In Database Management System
Data Models In Database Management SystemData Models In Database Management System
Data Models In Database Management System
 

Similar to 603s129

week1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.ppt
week1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.pptweek1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.ppt
week1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.pptRidoVercascade
 
Unit I Database concepts - RDBMS & ORACLE
Unit I  Database concepts - RDBMS & ORACLEUnit I  Database concepts - RDBMS & ORACLE
Unit I Database concepts - RDBMS & ORACLEDrkhanchanaR
 
PPT-UEU-Basis-Data-Pertemuan-1.pptx
PPT-UEU-Basis-Data-Pertemuan-1.pptxPPT-UEU-Basis-Data-Pertemuan-1.pptx
PPT-UEU-Basis-Data-Pertemuan-1.pptxUbaidURRahman78
 
3.1 Database structure - designing a system.ppt
3.1 Database structure - designing a system.ppt3.1 Database structure - designing a system.ppt
3.1 Database structure - designing a system.pptAghaSyedNaqvi
 
Type of database models
Type of database modelsType of database models
Type of database modelsSanthiNivas
 
introduction-to-dbms-unit-1.ppt
introduction-to-dbms-unit-1.pptintroduction-to-dbms-unit-1.ppt
introduction-to-dbms-unit-1.pptrekhasai2468
 
2019 DSA 105 Introduction to Data Science Week 5
2019 DSA 105 Introduction to Data Science Week 52019 DSA 105 Introduction to Data Science Week 5
2019 DSA 105 Introduction to Data Science Week 5Ferdin Joe John Joseph PhD
 
Ch 2-introduction to dbms
Ch 2-introduction to dbmsCh 2-introduction to dbms
Ch 2-introduction to dbmsRupali Rana
 
Chapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementChapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementAxmedMaxamuudYoonis
 
chapter08 - Database fundamentals.pdf
chapter08 - Database fundamentals.pdfchapter08 - Database fundamentals.pdf
chapter08 - Database fundamentals.pdfsatonaka3
 

Similar to 603s129 (20)

Database_Introduction.pdf
Database_Introduction.pdfDatabase_Introduction.pdf
Database_Introduction.pdf
 
demo2.ppt
demo2.pptdemo2.ppt
demo2.ppt
 
week1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.ppt
week1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.pptweek1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.ppt
week1-thursday-2id50-q2-2021-2022-intro-and-basic-fd.ppt
 
Database intro
Database introDatabase intro
Database intro
 
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
 
Unit I Database concepts - RDBMS & ORACLE
Unit I  Database concepts - RDBMS & ORACLEUnit I  Database concepts - RDBMS & ORACLE
Unit I Database concepts - RDBMS & ORACLE
 
PPT-UEU-Basis-Data-Pertemuan-1.pptx
PPT-UEU-Basis-Data-Pertemuan-1.pptxPPT-UEU-Basis-Data-Pertemuan-1.pptx
PPT-UEU-Basis-Data-Pertemuan-1.pptx
 
Topics-Ch4Ch5.ppt
Topics-Ch4Ch5.pptTopics-Ch4Ch5.ppt
Topics-Ch4Ch5.ppt
 
Topics-Ch4Ch5.ppt
Topics-Ch4Ch5.pptTopics-Ch4Ch5.ppt
Topics-Ch4Ch5.ppt
 
Uses of MS Access in Business
Uses of MS Access in BusinessUses of MS Access in Business
Uses of MS Access in Business
 
3.1 Database structure - designing a system.ppt
3.1 Database structure - designing a system.ppt3.1 Database structure - designing a system.ppt
3.1 Database structure - designing a system.ppt
 
Type of database models
Type of database modelsType of database models
Type of database models
 
MS ACCESS
MS ACCESSMS ACCESS
MS ACCESS
 
DBMS
DBMS DBMS
DBMS
 
Relational databases
Relational databasesRelational databases
Relational databases
 
introduction-to-dbms-unit-1.ppt
introduction-to-dbms-unit-1.pptintroduction-to-dbms-unit-1.ppt
introduction-to-dbms-unit-1.ppt
 
2019 DSA 105 Introduction to Data Science Week 5
2019 DSA 105 Introduction to Data Science Week 52019 DSA 105 Introduction to Data Science Week 5
2019 DSA 105 Introduction to Data Science Week 5
 
Ch 2-introduction to dbms
Ch 2-introduction to dbmsCh 2-introduction to dbms
Ch 2-introduction to dbms
 
Chapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementChapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project Management
 
chapter08 - Database fundamentals.pdf
chapter08 - Database fundamentals.pdfchapter08 - Database fundamentals.pdf
chapter08 - Database fundamentals.pdf
 

Recently uploaded

办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaHanief Utama
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 

Recently uploaded (20)

办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief Utama
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 

603s129

  • 2. Agenda • Questions • Relational database design • Microsoft Access • MySQL • Scalability
  • 3. Databases • Database – Collection of data, organized to support access – Models some aspects of reality • DataBase Management System (DBMS) – Software to create and access databases • Relational Algebra – Special-purpose programming language
  • 4. Structured Information • Field An “atomic” unit of data – number, string, true/false, … • Record A collection of related fields • Table A collection of related records – Each record is one row in the table – Each field is one column in the table • Primary Key The field that identifies a record – Values of a primary key must be unique • Database A collection of tables
  • 6. Registrar Example • Which students are in which courses? • What do we need to know about the students? – first name, last name, email, department • What do we need to know about the courses? – course ID, description, enrolled students, grades
  • 7. A “Flat File” Solution Discussion Topic Why is this a bad approach? Student ID Last Name First Name Department IDDepartmentCourse IDCourse description Grades email 1 Arrows John EE EE lbsc690 Information Technology 90 jarrows@wam 1 Arrows John EE Elec Engin ee750 Communication 95 ja_2002@yahoo 2 Peters Kathy HIST HIST lbsc690 Informatino Technology 95 kpeters2@wam 2 Peters Kathy HIST history hist405 American History 80 kpeters2@wma 3 Smith Chris HIST history hist405 American History 90 smith2002@glue 4 Smith John CLIS Info Sci lbsc690 Information Technology 98 js03@wam
  • 8. Goals of “Normalization” • Save space – Save each fact only once • More rapid updates – Every fact only needs to be updated once • More rapid search – Finding something once is good enough • Avoid inconsistency – Changing data once changes it everywhere
  • 9. Relational Algebra • Tables represent “relations” – Course, course description – Name, email address, department • Named fields represent “attributes” • Each row in the table is called a “tuple” – The order of the rows is not important • Queries specify desired conditions – The DBMS then finds data that satisfies them
  • 10. A Normalized Relational Database Department ID Department EE Electronic Engineering HIST History CLIS Information Stuides Course ID Course Description lbsc690 Information Technology ee750 Communication hist405 American History Student ID Course ID Grades 1 lbsc690 90 1 ee750 95 2 lbsc690 95 2 hist405 80 3 hist405 90 4 lbsc690 98 Student ID Last Name First Name Department ID email 1 Arrows John EE jarrows@wam 2 Peters Kathy HIST kpeters2@wam 3 Smith Chris HIST smith2002@glue 4 Smith John CLIS js03@wam Student Table Department Table Course Table Enrollment Table
  • 11. Approaches to Normalization • For simple problems – Start with “binary relationships” • Pairs of fields that are related – Group together wherever possible – Add keys where necessary • For more complicated problems – Entity relationship modeling
  • 12. Example of Join Student ID Last Name First Name Department ID email 1 Arrows John EE jarrows@wam 2 Peters Kathy HIST kpeters2@wam 3 Smith Chris HIST smith2002@glue 4 Smith John CLIS js03@wam Student Table Department ID Department EE Electronic Engineering HIST History CLIS Information Stuides Department Table Student ID Last Name First Name Department IDDepartment email 1 Arrows John EE Electronic Engineering jarrows@wam 2 Peters Kathy HIST History kpeters2@wam 3 Smith Chris HIST History smith2002@glue 4 Smith John CLIS Information Stuides js03@wam “Joined” Table
  • 13. Problems with Join • Data modeling for join is complex – Useful to start with E-R modeling • Join are expensive to compute – Both in time and storage space • But it’s joins that make databases relational – Projection and restriction also used in flat files
  • 14. Some Lingo • “Primary Key” uniquely identifies a record – e.g. student ID in the student table • “Compound” primary key – Synthesize a primary key with a combination of fields – e.g., Student ID + Course ID in the enrollment table • “Foreign Key” is primary key in the other table – Note: it need not be unique in this table
  • 15. Project Student ID Last Name First Name Department IDDepartment email 1 Arrows John EE Electronic Engineering jarrows@wam 2 Peters Kathy HIST History kpeters2@wam 3 Smith Chris HIST History smith2002@glue 4 Smith John CLIS Information Stuides js03@wam New Table Student ID Department 1 Electronic Engineering 2 History 3 History 4 Information Stuides SELECT Student ID, Department
  • 16. Restrict Student ID Last Name First Name Department IDDepartment email 2 Peters Kathy HIST History kpeters2@wam 3 Smith Chris HIST History smith2002@glue Student ID Last Name First Name Department IDDepartment email 1 Arrows John EE Electronic Engineering jarrows@wam 2 Peters Kathy HIST History kpeters2@wam 3 Smith Chris HIST History smith2002@glue 4 Smith John CLIS Information Stuides js03@wam New Table WHERE Department ID = “HIST”
  • 17. Entity-Relationship Diagrams • Graphical visualization of the data model • Entities are captured in boxes • Relationships are captured using arrows
  • 18. Registrar ER Diagram Enrollment Student Course Grade … Student Student ID First name Last name Department E-mail … Course Course ID Course Name … Department Department ID Department Name … has has associated with
  • 19. Getting Started with E-R Modeling • What questions must you answer? • What data is needed to generate the answers? – Entities • Attributes of those entities – Relationships • Nature of those relationships • How will the user interact with the system? – Relating the question to the available data
  • 20. “Project Team” E-R Example student team implement-role member-of project creates manage-role php-project ajax-project d 1 M M 1 1 1 human client needs M 1
  • 21. Components of E-R Diagrams • Entities – Types • Subtypes (disjoint / overlapping) – Attributes • Mandatory / optional – Identifier • Relationships – Cardinality – Existence – Degree
  • 23. Making Tables from E-R Diagrams • Pick a primary key for each entity • Build the tables – One per entity – Plus one per M:M relationship – Choose terse but memorable table and field names • Check for parsimonious representation – Relational “normalization” – Redundant storage of computable values • Implement using a DBMS
  • 24. • 1NF: Single-valued indivisible (atomic) attributes – Split “Doug Oard” to two attributes as (“Doug”, “Oard”) – Model M:M implement-role relationship with a table • 2NF: Attributes depend on complete primary key – (id, impl-role, name)->(id, name)+(id, impl-role) • 3NF: Attributes depend directly on primary key – (id, addr, city, state, zip)->(id, addr, zip)+(zip, city, state) • 4NF: Divide independent M:M tables – (id, role, courses) -> (id, role) + (id, courses) • 5NF: Don’t enumerate derivable combinations
  • 25. Normalized Table Structure • Persons: id, fname, lname, userid, password • Contacts: id, ctype, cstring • Ctlabels: ctype, string • Students: id, team, mrole • Iroles: id, irole • Rlabels: role, string • Projects: team, client, pstring
  • 26. Making Tables from E-R Diagrams • Pick a primary key for each entity • Build the tables – One per entity – Plus one per M:M relationship – Choose terse but memorable table and field names • Check for parsimonious representation – Relational “normalization” – Redundant storage of computable values • Implement using a DBMS
  • 27. Database Integrity • Registrar database must be internally consistent – Enrolled students must have an entry in student table – Courses must have a name • What happens: – When a student withdraws from the university? – When a course is taken off the books?
  • 28. Integrity Constraints • Conditions that must always be true – Specified when the database is designed – Checked when the database is modified • RDBMS ensures integrity constraints are respected – So database contents remain faithful to real world – Helps avoid data entry errors
  • 29. Referential Integrity • Foreign key values must exist in other table – If not, those records cannot be joined • Can be enforced when data is added – Associate a primary key with each foreign key • Helps avoid erroneous data – Only need to ensure data quality for primary keys
  • 30. Database “Programming” • Natural language – Goal is ease of use • e.g., Show me the last names of students in CLIS – Ambiguity sometimes results in errors • Structured Query Language (SQL) – Consistent, unambiguous interface to any DBMS – Simple command structure: • e.g., SELECT Last name FROM Students WHERE Dept=CLIS – Useful standard for inter-process communications • Visual programming (e.g., Microsoft Access) – Unambiguous, and easier to learn than SQL
  • 31. Using Microsoft Access • Create a database called M:rides.mdb – File->New->Blank Database • Specify the fields (columns) – “Create a Table in Design View” • Fill in the records (rows) – Double-click on the icon for the table
  • 32. Creating Fields • Enter field name – Must be unique, but only within the same table • Select field type from a menu – Use date/time for times – Use text for phone numbers • Designate primary key (right mouse button) • Save the table – That’s when you get to assign a table name
  • 33. Entering Data • Open the table – Double-click on the icon • Enter new data in the bottom row – A new (blank) bottom row will appear • Close the table – No need to “save” – data is stored automatically
  • 34. Building Queries • Copy ride.mdb to your C: drive • “Create Query in Design View” – In “Queries” • Choose two tables, Flight and Company • Pick each field you need using the menus – Unclick “show” to not project – Enter a criterion to “restrict” • Save, exit, and reselect to run the query
  • 35. Fun Facts about Queries • Joins are automatic if field names are same – Otherwise, drag a line between the fields • Sort order is easy to specify – Use the menu
  • 36. The SQL SELECT Command • Project chooses columns – Based on their label • Restrict chooses rows – Based on their contents • e.g. department ID = “HIST” • These can be specified together – SELECT Student ID, Dept WHERE Dept = “History”
  • 37. Restrict Operators • Each SELECT contains a single WHERE • Numeric comparison <, >, =, <>, … • e.g., grade<80 • Boolean operations – e.g., Name = “John” AND Dept <> “HIST”
  • 40. Structured Query Language SELECT Company.CompanyName, Company.CompanyPhone, Flight.Origin, Flight.DepartureTime FROM Flight,Company WHERE Flight.CompanyName=Company.CompanyName AND Flight.AvailableSeats>3;
  • 41. select address from employee where employee.surname='Smith' and employee.forenames='Robert'; field table how you want to restrict the rows
  • 42. select dname from employee, department where employee.depno=department.depno and surname='Smith' and forenames='Robert'; field tables to join how you want to restrict the rows how to join
  • 43. Create a MySQL Database • “root” user creates database + grants permissions – Using the WAMP console (or mysql –u root –p) • root has no initial password; just hit <enter> when asked – By the system administrator account CREATE DATABASE project; GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, DROP ON project.* TO ‘foo’@’localhost’ IDENTIFIED BY ‘bar’; FLUSH PRIVILEGES; • Start mysql – MySQL console for WAMP: mysql –u foo –p bar • Connect to your database USE project;
  • 44. Creating Tables CREATE TABLE contacts ( ckey MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT, id MEDIUMINT UNSIGNED NOT NULL, ctype SMALLINT UNSIGNED NOT NULL, cstring VARCHAR(40) NOT NULL, FOREIGN KEY (id) REFERENCES persons(id) ON DELETE CASCADE, FOREIGN KEY (ctype) REFERENCES ctlabels(ctype) ON DELETE RESTRICT, PRIMARY KEY (ckey) ) ENGINE=INNODB; To delete: DROP TABLE contacts;
  • 45. Populating Tables INSERT INTO ctlabels (string) VALUES ('primary email'), ('alternate email'), ('home phone'), ('cell phone'), ('work phone'), ('AOL IM'), ('Yahoo Chat'), ('MSN Messenger'), (‘other’);  To empty a table: DELETE FROM ctlabels;
  • 46. “Looking Around” in MySQL • SHOW DATABASES; • SHOW TABLES; • DESCRIBE tablename; • SELECT * FROM tablename;
  • 47. Databases in the Real World • Some typical database applications: – Banking (e.g., saving/checking accounts) – Trading (e.g., stocks) – Airline reservations • Characteristics: – Lots of data – Lots of concurrent access – Must have fast access – “Mission critical”
  • 48. Source: Technology Review (July/August, 2008) Database layer: 800 eight-core Linux servers running MySQL (40 TB user data) Caching servers: 15 million requests per second, 95% handled by memcache (15 TB of RAM)
  • 49. Concurrency • Thought experiment: You and your project partner are editing the same file… – Scenario 1: you both save it at the same time – Scenario 2: you save first, but before it’s done saving, your partner saves Whose changes survive? A) Yours B) Partner’s C) neither D) both E) ???
  • 50. Concurrency Example • Possible actions on a checking account – Deposit check (read balance, write new balance) – Cash check (read balance, write new balance) • Scenario: – Current balance: $500 – You try to deposit a $50 check and someone tries to cash a $100 check at the same time – Possible sequences: (what happens in each case?) Deposit: read balance Deposit: write balance Cash: read balance Cash: write balance Deposit: read balance Cash: read balance Cash: write balance Deposit: write balance Deposit: read balance Cash: read balance Deposit: write balance Cash: write balance
  • 51. Database Transactions • Transaction: sequence of grouped database actions – e.g., transfer $500 from checking to savings • “ACID” properties – Atomicity • All-or-nothing – Consistency • Each transaction must take the DB between consistent states. – Isolation: • Concurrent transactions must appear to run in isolation – Durability • Results of transactions must survive even if systems crash
  • 52. Making Transactions • Idea: keep a log (history) of all actions carried out while executing transactions – Before a change is made to the database, the corresponding log entry is forced to a safe location • Recovering from a crash: – Effects of partially executed transactions are undone – Effects of committed transactions are redone the log
  • 53. Utility Service Desk Exercise • Design a database to keep track of service calls for a utility company: – Customers call to report problems – Call center manages “tickets” to assign workers to jobs • Must match skills and service location • Must balance number of assignments – Workers call in to ask where their next jobs are • In SQL, you can do the following operations: – Count the number of rows in a result set – Sort the result set according to a field – Find the maximum and minimum value of a field
  • 54. Key Ideas • Databases are a good choice when you have – Lots of data – A problem that contains inherent relationships • Join is the most important concept – Project and restrict just remove undesired stuff • Design before you implement – Managing complexity is important