Relational Databases Week 11 LBSC 671 Creating Information Infrastructures.

Slides:



Advertisements
Similar presentations
Relational Databases Week 9 INFM 603.
Advertisements

Let’s try Oracle. Accessing Oracle The Oracle system, like the SQL Server system, is client / server. For SQL Server, –the client is the Query Analyser.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Committed to Shaping the Next Generation of IT Experts. Chapter 2: Relational Databases.
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
Web-Database Integration Week 8 LBSC 690 Information Technology.
LBSC 690 Session #7 Structured Information: Databases Jimmy Lin The iSchool University of Maryland Wednesday, October 15, 2008 This work is licensed under.
Programming Week 9 LBSC 690 Information Technology.
Chapter 3 Database Management
Database Management: Getting Data Together Chapter 14.
A Guide to Oracle9i1 Introduction To Forms Builder Chapter 5.
3-1 Chapter 3 Data and Knowledge Management
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.
Databases Week 7 LBSC 690 Information Technology.
Week 6 LBSC 690 Information Technology
Databases Week 6 LBSC 690 Information Technology.
LBSC 690: Session 7 Relational Databases
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Database Design Concepts INFO1408 Term 2 week 1 Data validation and Referential integrity.
1 Chapter 2 Reviewing Tables and Queries. 2 Chapter Objectives Identify the steps required to develop an Access application Specify the characteristics.
Relational Databases Week 7 LBSC 690 Information Technology.
Access Lecture 1 Database Overview and Creating Tables Create an Employee Table.
Management Information Systems MS Access 2003 By: Mr. Imdadullah Lecturer, Department of M.I.S. College of Business Administration, KSU.
Computer Science & Engineering 2111 Introduction to Database Management Systems Relationships and Database Creation 1 CSE 2111 Introduction to Database.
Page 1 ISMT E-120 Introduction to Microsoft Access & Relational Databases The Influence of Software and Hardware Technologies on Business Productivity.
Chapter 5 UNDERSTANDING AND DESIGNING ACCOUNTING DATA.
Introduction To Databases IDIA 618 Fall 2014 Bridget M. Blodgett.
Page 1 ISMT E-120 Desktop Applications for Managers Introduction to Microsoft Access.
Relational Databases Week 13 LBSC 671 Creating Information Infrastructures.
ACCESS CHAPTER 1. OBJECTIVES Tables Queries Forms Reports Primary and Foreign Keys Relationship.
Using MIS 4e Chapter 5 Database Processing
Relational Databases Week 9 INFM 603. Agenda Relational database design Microsoft Access MySQL Main Class Project Proposal Presentation.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 1. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office.
Databases C HAPTER Chapter 10: Databases2 Databases and Structured Fields  A database is a collection of information –Typically stored as computer.
Copyright © 2003 by Prentice Hall Module 4 Database Management Systems 1.What is a database? Data hierarchy and data organization Field, record, file,
CPSC 203 Introduction to Computers T59 & T64 By Jie (Jeff) Gao.
Introduction. 
DAY 15: ACCESS CHAPTER 2 Larry Reaves October 7,
DAY 14: ACCESS CHAPTER 1 Tazin Afrin October 03,
Summary Data Modeling SDLC What is Data Modeling Application Audience and Services Entities Attributes Relationships Entity Relationship Diagrams Conceptual,Logical.
INFM 603: Information Technology and Organizational Context Jimmy Lin The iSchool University of Maryland Wednesday, March 5, 2014 Session 6: Relational.
PHP meets MySQL.
Microsoft Access 2003 Define some key Access terminology: Field – A single characteristic or attribute of a person, place, object, event, or idea. Record.
Databases Session 5 LIS 7008 Information Technologies LSU/SLIS.
Content Management Systems Week 14 LBSC 671 Creating Information Infrastructures.
Management Information Systems MS Access MS Access is an application software that facilitates us to create Database Management Systems (DBMS)
XP 1 Microsoft Access 2003 Introduction To Microsoft Access 2003.
Databases Week 5 LBSC 690 Information Technology.
DAY 12: DATABASE CONCEPT Tazin Afrin September 26,
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.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
1 Database Design and Development: A Visual Approach © 2006 Prentice Hall Chapter 8 DATABASE DESIGN AND DEVELOPMENT: A VISUAL APPROACH Chapter 8 Creating.
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.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
1 CSE 2337 Introduction to Data Management Access Book – Ch 1.
U:/msu/course/cse/103 Day 18, Slide 1 CSE 103 Day 18 If you are not enrolled in CSE 103, please save and log out by 10:10.
Lesson 4.  After a table has been created, you may need to modify it. You can make many changes to a table—or other database object—using its property.
Relational Databases Week 7 INFM 603.
CPSC 203 Introduction to Computers T97 By Jie (Jeff) Gao.
Data Modeling Session 12 INST 301 Introduction to Information Science.
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.
N5 Databases Notes Information Systems Design & Development: Structures and links.
GO! with Microsoft Office 2016
GO! with Microsoft Access 2016
Database Design Hacettepe University
Microsoft Access and SQL
Week 6 LBSC 690 Information Technology
Class 5 LBSC 690 Information Technology
Presentation transcript:

Relational Databases Week 11 LBSC 671 Creating Information Infrastructures

Types of Relationships 1-to-1 1-to-Many Many-to-Many

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

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

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

The 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”

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 M:\ 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

Some Details About Access Joins are automatic if field names are same –Otherwise, drag a line between the fields Sort order is easy to specify –Use the menu Queries form the basis for reports –Reports give good control over layout –Use the report wizard - the formats are complex Forms manage input better than raw tables –Invalid data can be identified when input –Graphics can be incorporated

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)

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

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

Putting the Pieces Together Web Server HTML CGI Browser SQL Query Results Database

Why Database-Generated Pages? Remote access to a database –Client does not need the database software Serve rapidly changing information –e.g., Airline reservation systems Provide multiple “access points” –By subject, by date, by author, … Record user responses in the database

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;

Issues to Consider Benefits of Databases –Multiple views –Data reuse –Scalable –Access control Costs of Databases –Formal modeling –Complex (learn, design, implement, debug) –Brittle (relies on multiple communicating servers) –Not crawlable

Key Ideas Databases are a good choice when you have –Lots of data –A problem that contains inherent relationships Design before you implement Join is the most important concept –Project and restrict just remove undesired stuff

RideFinder Exercise Design a database to match passengers with available rides for Spring Break –Drivers phone in available seats They want to know about interested passengers –Passengers call up looking for rides They want to know about available rides No “ride wanted” ads –These things happen in no particular order

Exercise Goals Identify the tables you will need –First decide what data you will need What questions will be asked? –Then design normalized tables Start with binary relations if that helps Design the queries –Using join, project and restrict –What happens when a passenger calls? –What happens when a driver calls?

Reminder: Starting 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

Exercise Logistics Work in groups of 3 or 4 Brainstorm data requirements for 5 minutes –Do passengers care about the price? –Do drivers care how much luggage there is? Develop tables and queries for 15 minutes –Don’t get hung up on one thing too long Compare you answers with another group –Should take about 5 minutes each

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

Before You Go On a sheet of paper, answer the following (ungraded) question (no names, please): What was the muddiest point in today’s class?