Week 6 LBSC 690 Information Technology

Slides:



Advertisements
Similar presentations
Information Systems Technology Ross Malaga B Copyright © 2005 Prentice Hall, Inc. B-1 WORKING WITH DATABASES.
Advertisements

LBSC 690 Session #7 Structured Information: Databases Jimmy Lin The iSchool University of Maryland Wednesday, October 15, 2008 This work is licensed under.
ISP 121 Week 1 Introduction to Databases. ISP 121, Winter Why a database and not a spreadsheet? You have too many separate files or too much data.
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
Database Design Concepts INFO1408 Term 2 week 1 Data validation and Referential integrity.
Spreadsheets and Databases Class 8 LBSC 690 Information Technology.
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.
Management Information Systems MS Access 2003 By: Mr. Imdadullah Lecturer, Department of M.I.S. College of Business Administration, KSU.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
1 Relational Databases. 2 Find Databases here… 3 And here…
Relational Databases Week 13 LBSC 671 Creating Information Infrastructures.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 1. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office.
CPSC 203 Introduction to Computers T59 & T64 By Jie (Jeff) Gao.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
DAY 15: ACCESS CHAPTER 2 Larry Reaves October 7,
Moodle (Course Management Systems). Assignments 1 Assignments are a refreshingly simple method for collecting student work. They are a simple and flexible.
INFM 603: Information Technology and Organizational Context Jimmy Lin The iSchool University of Maryland Wednesday, March 5, 2014 Session 6: Relational.
Microsoft Access Get a green book. Page AC 2 Define Access Define database.
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.
 A database is a collection of data that is organized so that its contents can easily be accessed, managed, and updated. What is Database?
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.
Chapter 17 Creating a Database.
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.
Using Microsoft Access 56:150 Information System Design.
Copyright 2006 Prentice-Hall, Inc. Essentials of Systems Analysis and Design Third Edition Joseph S. Valacich Joey F. George Jeffrey A. Hoffer Chapter.
Database collection of related information stored in an organized form Database program software tool for storage & retrieval of that information.
22 November Databases. Presentations Tega: news 1954 Prediction.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
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.
CPSC 203 Introduction to Computers T97 By Jie (Jeff) Gao.
Key Applications Module Lesson 22 — Managing and Reporting Database Information Computer Literacy BASICS.
Microsoft Office 2013 Try It! Chapter 4 Storing Data in Access.
Access Module Implementing a Database with Microsoft Access A Great Module on Your CD.
Programming Session 6 LBSC 690 Information Technology.
Access Queries and Forms. Adding a New Field  To insert a field after you have saved your table, open Access, and open the table  It is easier to add.
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.
1 Finding Your Way Through a Database Exploring Microsoft Office Access.
N5 Databases Notes Information Systems Design & Development: Structures and links.
Access Tutorial 2 Building a Database and Defining Table Relationships
DATABASE.
Databases Chapter 9 Asfia Rahman.
GO! with Microsoft Office 2016
Practical Office 2007 Chapter 10
Information Systems Today: Managing in the Digital World
GO! with Microsoft Access 2016
Exploring Microsoft Office Access
Databases.
Exploring Microsoft Office Access 2007
Exploring Microsoft Office Access 2007
Case Study Creating a Database
Creating and Modifying Queries
Announcements Project 2’s due date is moved to Tuesday 8/3/04
Spreadsheets, Modelling & Databases
INFO/CSE 100, Spring 2006 Fluency in Information Technology
King Saud University College of Business Administration Management Information Systems MS ACCESS.
Topic 11 Lesson 1 - Analyzing Data in Access
Class 5 LBSC 690 Information Technology
Exploring Microsoft Office Access
Presentation transcript:

Week 6 LBSC 690 Information Technology Databases Week 6 LBSC 690 Information Technology

Agenda Questions Relational database design Microsoft Access

Databases Database DataBase Management System (DBMS) 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

Another 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

Why is this a bad approach? A “Flat File” Solution Discussion Topic Why is this a bad approach?

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 Field names are called “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 Student Table Department Table Course Table Enrollment Table

Approaches to Normalization For simple problems (like the homework) 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 (LBSC 670)

Example of Join Student Table Department Table “Joined” Table

Join Why need join? How to link records across tables Complex queries need link records across tables Force consistent check, error check How to link records across tables Share common fields e.g. student department info via department ID Basic cross-table operation Computationally complex - “same fields”

Problems with Join Data modeling for join is complex Taught in LBSC 670 Join are expensive to compute Both in time and storage space But it is 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

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

Project New Table SELECT Student ID, Department

Restrict New Table WHERE Department ID = “HIST”

The SELECT Command Project chooses columns Restrict chooses rows 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”

FlightFinder Exercise Design a database to match passengers with available flights on corporate jets Companies phone in available seats They want to know about interested passengers Passengers call up looking for flights They want to know about available flights These things happen in no particular order

Exercise Goals Identify the tables you will need Design the queries First decide what data you will save What questions will be asked? Then decide how to group/split it into tables Start with binary relations if that helps Design the queries Using join, project and restrict Add primary and foreign keys where needed

Exercise Logistics Work in groups of 3 or 4 Brainstorm data requirements for 5 minutes Do customers care about the price? Do companies care what passengers weigh? 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

One Possible Answer Surely you didn’t expect this in the notes :) Tables: Flight: Flight Number, Origin, Destination, Departure Time, Arrival Time, Available Seats, Company Name, Price Passenger: Passenger Number, Name, Address, Phone Number Company: Company Name, Company Address, Company Phone Booking: Flight Number, Passenger Number Queries: Passenger calls: Join: Flight, Company Project: Departure Time, Company Phone Restrict: Origin, Destination, Available Seats>0 Company calls: Join: Flight, Passenger, Booking Project: Flight Number, Name, Phone Number Restrict: Company Name

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 We will use this next week for Web integration Visual programming (e.g., Microsoft Access) Unambiguous, and easier to learn than SQL

Using Microsoft Access Create a database called M:\planes.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 Select field type from a menu 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 Enter new data in the bottom row 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 N:\share\class\flight.* to M:\ “Create Query in Design View” In “Queries” Choose two tables, Flight and Company Pick each field you need using the menus Unclick the X to “unproject” 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 Queries form the basis for reports Reports give good control over layout Use the report wizard - the formats are complex

Other Things to Know Forms manage input better than raw tables Invalid data can be identified when input Graphics can be incorporated

Discussion Point: Mythical Person-Month Why is software development different from manufacturing car? If it would take one person three months, why does it take four people SIX months?

Programming is Creative Activity Three stages Planning Realization testing Hard to estimate right Pressure to estimate too low Assume everything will go well

Estimating Completion Time Rules of thumb 1/3 specification 1/6 coding 1/2 test planning, testing, and fixing! Add time for coding to learn as you go, but don’t take time away from the other parts! Reread the section on “gutless estimating” if you are tempted

Person /= Months Interchangeable only when partitions Otherwise, not sequential constrained not involve communication among them no training needed Otherwise, Keep sequential Effort of communication added Effort of training added More people means more communications

Communications Sort of like continuous training Who needs to know what I just learned? Can be minimized by good partitioning Limit the number of interfaces Can be facilitated by computers Asynchronous communication techniques Email, private newsgroups, voice mail

Key Ideas Databases are a good choice when you have Lots of data A problem that contains inherent relationships Design before you implement This is just another type of programming The mythical person-month applies! Join is the most important concept Project and restrict just remove undesired stuff