Relational Databases Week 9 INFM 603. Agenda Relational database design Microsoft Access MySQL Main Class Project Proposal Presentation.

Slides:



Advertisements
Similar presentations
Relational Databases Week 9 INFM 603.
Advertisements

Chapter 10: Designing Databases
Relational Database. Relational database: a set of relations Relation: made up of 2 parts: − Schema : specifies the name of relations, plus name and type.
Concepts of Database Management Seventh Edition
Database Concepts Lec. 5. What Is a Database? Data are unprocessed raw facts that include text, number, images, audio, and video. Information is processed.
LBSC 690 Session #7 Structured Information: Databases Jimmy Lin The iSchool University of Maryland Wednesday, October 15, 2008 This work is licensed under.
Introduction to Structured Query Language (SQL)
Database Management: Getting Data Together Chapter 14.
Databases Week 7 LBSC 690 Information Technology.
A Guide to SQL, Seventh Edition. Objectives Understand the concepts and terminology associated with relational databases Create and run SQL commands in.
Week 6 LBSC 690 Information Technology
Databases Week 6 LBSC 690 Information Technology.
LBSC 690: Session 7 Relational Databases
Introduction to Structured Query Language (SQL)
Concepts of Database Management Sixth Edition
Relational Databases Week 7 LBSC 690 Information Technology.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Compe 301 ER - Model. Today DBMS Overview Data Modeling Going from conceptual requirements of a application to a concrete data model E/R Model.
Introduction To Databases IDIA 618 Fall 2014 Bridget M. Blodgett.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
DAY 21: MICROSOFT ACCESS – CHAPTER 5 MICROSOFT ACCESS – CHAPTER 6 MICROSOFT ACCESS – CHAPTER 7 Akhila Kondai October 30, 2013.
1 Relational Databases. 2 Find Databases here… 3 And here…
Relational Databases Week 13 LBSC 671 Creating Information Infrastructures.
Database Applications – Microsoft Access Lesson 2 Modifying a Table and Creating a Form 45 slides in presentation Accessibility check 9/14.
Using MIS 4e Chapter 5 Database Processing
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2007 (Week 3, Tuesday 9/4/2007)
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 1. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office.
Data at the Core of the Enterprise. Objectives  Define of database systems.  Introduce data modeling and SQL.  Discuss emerging requirements of database.
Copyright © 2003 by Prentice Hall Module 4 Database Management Systems 1.What is a database? Data hierarchy and data organization Field, record, file,
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
ASP.NET Programming with C# and SQL Server First Edition
AL-MAAREFA COLLEGE FOR SCIENCE AND TECHNOLOGY INFO 232: DATABASE SYSTEMS CHAPTER 7 INTRODUCTION TO STRUCTURED QUERY LANGUAGE (SQL) Instructor Ms. Arwa.
DAY 15: ACCESS CHAPTER 2 Larry Reaves October 7,
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
DAY 14: ACCESS CHAPTER 1 Tazin Afrin October 03,
INFM 603: Information Technology and Organizational Context Jimmy Lin The iSchool University of Maryland Wednesday, March 5, 2014 Session 6: Relational.
Concepts and Terminology Introduction to Database.
Databases Session 5 LIS 7008 Information Technologies LSU/SLIS.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
Relational Database Management Systems. A set of programs to manage one or more databases Provides means for: Accessing the data Inserting, updating and.
Chapter 7 Working with Databases and MySQL PHP Programming with MySQL 2 nd Edition.
Management Information Systems MS Access MS Access is an application software that facilitates us to create Database Management Systems (DBMS)
Lecture 12 Designing Databases 12.1 COSC4406: Software Engineering.
Access 2013 Microsoft Access 2013 is a database application that is ideal for gathering and understanding data that’s been collected on just about anything.
10/17/2012ISC471/HCI571 Isabelle Bichindaritz 1 Technologies Databases.
Databases Week 5 LBSC 690 Information Technology.
Concepts of Database Management Seventh Edition
Chapter 17 Creating a Database.
Database Design and Management CPTG /23/2015Chapter 12 of 38 Functions of a Database Store data Store data School: student records, class schedules,
MS Access 2007 Management Information Systems 1. Overview 2  What is MS Access?  Access Terminology  Access Window  Database Window  Create New Database.
Relational Databases Week 11 LBSC 671 Creating Information Infrastructures.
1 Relational Databases and SQL. Learning Objectives Understand techniques to model complex accounting phenomena in an E-R diagram Develop E-R diagrams.
Lecture2: Database Environment Prepared by L. Nouf Almujally 1 Ref. Chapter2 Lecture2.
6 1 Lecture 8: Introduction to Structured Query Language (SQL) J. S. Chou, P.E., Ph.D.
Introduction to Database Systems1. 2 Basic Definitions Mini-world Some part of the real world about which data is stored in a database. Data Known facts.
Copyright 2006 Prentice-Hall, Inc. Essentials of Systems Analysis and Design Third Edition Joseph S. Valacich Joey F. George Jeffrey A. Hoffer Chapter.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Programming Logic and Design Fourth Edition, Comprehensive Chapter 16 Using Relational Databases.
Chapter 10 Designing Databases. Objectives:  Define key database design terms.  Explain the role of database design in the IS development process. 
Relational Databases Week 7 INFM 603.
Data Modeling Session 12 INST 301 Introduction to Information Science.
MICROSOFT ACCESS – CHAPTER 5 MICROSOFT ACCESS – CHAPTER 6 MICROSOFT ACCESS – CHAPTER 7 Sravanthi Lakkimsety Mar 14,2016.
Relational Databases (Part 2) Session 14 INST 301 Introduction to Information Science.
CSCI-235 Micro-Computers in Science Databases. Database Concepts Data is any unorganized text, graphics, sounds, or videos A database is a collection.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 The Relational Model Chapter 3.
Exploring Microsoft Office Access
Translation of ER-diagram into Relational Schema
Microsoft Access and SQL
Week 6 LBSC 690 Information Technology
Presentation transcript:

Relational Databases Week 9 INFM 603

Agenda Relational database design Microsoft Access MySQL Main Class Project Proposal Presentation

Links Drupal Tutorials – tutorial-sites/ tutorial-sites/

Registrar Example Which students are in which courses? What do we need to know about the students? –first name, last name, , department What do we need to know about the courses? –course ID, description, enrolled students, grades

A “Flat File” Solution Why is this a bad approach? Better approach: database

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

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

Structured Information FieldAn “atomic” unit of data –number, string, true/false, … RecordA 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 KeyThe field that identifies a record –Values of a primary key must be unique DatabaseA collection of tables

A Simple Example primary key

Relational Algebra Tables represent “relations” –Course, course description –Name, 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 –Selections, projections, joins

Database Selections New Table WHERE Department ID = “HIST”

Database Projections New Table SELECT Student ID, Department

Joins Student Table Department Table “Joined” Table Join – combines records from two or more tables

Joins 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

Normalization Normalization – organization of fields and tables in a relational database in order to minimize redundancy and dependency 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

Normal Forms - guidelines for record design 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 Guide: Normal Forms

A Normalized Relational Database Student Table Department TableCourse 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

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 … Course Course ID Course Name … Department Department ID Department Name … 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 –Expressing the answer in a useful form

“Project Team” E-R Example studentteam implement-role member-of project creates manage-role php-projectajax-project d 1 M M human client needs M1

Components of E-R Diagrams Entities –Types Subtypes (disjoint / overlapping) –Attributes Mandatory / optional –Identifier Relationships –Cardinality –Existence –Degree

Types of Relationships 1-to-1 1-to-Many Many-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

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

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

Structured Query Language Running the mysql command line tool  mysql –u root root has no initial password; just hit when asked In XAMPP for macs it can be found at /Applications/XAMPP/xamppfiles/bin In XAMPP for pcs it can be found at C:\xampp\mysql\bin\mysql.exe Notice you can also execute commands using phpMyAdmin –Accessible from Accessing a remote database –mysql -h -u -p –Password must be provided after

The SQL SELECT Command Projection 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 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 Structured Query Language

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 Structured Query Language

SQL Commands Overview help contents; show databases; create database myDB; use myDB; show tables; create table friends (name varchar(20) primary key, gender enum(‘M’,’F’), salary float, id int); describe friends; insert into friends values (“Mary”, “F”, 10000, 10); insert into friends (name) values (“Jose”); select * from friends where salary > 5000; select name,id from friends where salary > 5000; update friends set salary=7778, gender=“F” where name = “Pat”; delete from friends where name=“Pat”; show grants; drop table friends; drop database myDB;

SQL Commands Overview Join Example: –friends table with fields name, salary, gender –foods table with fields person, food –If you want to display the name, salary, and food someone likes you can execute the following query: select name,salary,food from friends,foods where friends.name = foods.person; –What happens if we remove the where clause?

SQL Commands Overview like operator  to compare strings –% wildchar character  matches multiple characters –_ wildchar character  matches one character –Example: delete from friends where name like “%Jose%”; Order by  to display elements ordered by a field –Example: select * from friends order by salary; –Output: elements will be listed in increasing salary order –Example: select * from friends order by salary desc; –Output: elements will be listed in decreasing salary order count  allows you to determine number of records satisfying a criteria –Example: select count(name) from friends where salary <= 12000; –Output: number of friends satisfying salary restriction and, or, between operators

SQL Commands Overview Loading data using load data Example: load data infile “C:\\Documents and Settings\\nelson\\Desktop\\Temp\\myData.txt” into table toys fields terminated by ‘,’; Dumping data using select Example: select * from toys into outfile “C:\\Documents and Settings\\nelson\\Desktop\\Temp\\dumpFile.txt” fields terminated by ‘,’;

SQL Commands Overview Group by  use to deal with aggregate functions. For example, imaging you have a table where you register the name, and amount spent by a person. A person can have multiple entries in the table. The following query will provide how much each person spent: select name, sum(amount) from persons group by name;

SQL Commands Overview having  to deal with aggregate functions (where clause cannot be used against aggregates). For example, imaging you have a table where you register the name, and amount spent by a person. A person can have multiple entries in the table. The following query will provide a list of those that spent more than 40 dollars: select name, sum(amount) from persons group by name having sum(amount) > 40; limit  controls the number of records returned Example: select * from allfriends limit 3;  first three records are displayed Example: select * from allfriends limit 3,2;  skips the first three records and displays the following two

SQL Commands Overview Granting access via grant command –grant on.* identified by “ "; –Example: grant all on myDB.friends to identified by “goodbyeWorld”; –  all, create, delete, drop, insert, update FLUSH PRIVILEGES; See: tables.txt for additional command examples

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”

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

MySQL Engines MySQL Internal engines –Manage and manipulate data (used to process selects, create tables, etc.) –Several engines each capable of performing select, create tables, etc. myisam engine  default engine (you do not need to specify it). It supports full-text searching but it does not support transactional processing. innodb engine  It provides transactional support. It provides no support for full-text searching memory engine  equivalent to myisam but data is stored in memory (extremely fast)

MySQL Engines Creating a table that uses the innodb Engine Creating table using innodb engine create table tvshows ( name varchar(50), description varchar(80) ) engine=innodb; You could replace innodb with myisam; Transaction example set autocommit = 0 start transaction // INSERT records rollback start transaction // INSERT records commit

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