Intro to Access and Data Management. Announcements No Class – Monday Chapter 5 – Wednesday Access Tutorial & DB Creation - Friday.

Slides:



Advertisements
Similar presentations
Data and Knowledge Management
Advertisements

Computer Science & Engineering 2111 Introduction to Database Systems 1CSE 2111-Introduction to Database Systems.
Relational Databases Chapter 4.
CHAPTER 5 Data and Knowledge Management. Announcements Today Chapter 5 – Data and Knowledge Mgmt Tuesday Access Tutorial Project 1 Questions/comments.
Chapter 3 Database Management
Database Management: Getting Data Together Chapter 14.
3 / 12 CHAPTER Databases MIS105 Irfan Ahmed Ilyas.
Thursday, January 27, Management of Information Systems: Mini-3 Spring 2000.
CHAPTER 3 Data and Knowledge Management
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
BUSINESS DRIVEN TECHNOLOGY
Terms - data,information, file record, table, row, column, transaction, concurrency Concepts - data integrity, data redundancy, Type of databases – single-user,
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
CHAPTER 5 Data and Knowledge Management. CHAPTER OUTLINE 5.1 Managing Data 5.2 The Database Approach 5.3 Database Management Systems 5.4 Data Warehouses.
Chapter 5 Database Processing.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Intro to MIS – MGS351 Databases and Data Warehouses Chapter 3.
1 Intro to Info Tech Database Management Systems Copyright 2003 by Janson Industries This presentation can be viewed on line at:
Copyright © 2003 by Prentice Hall Module 4 Database Management Systems 1.What is a database? Data hierarchy and data organization Field, record, file,
6-1 DATABASE FUNDAMENTALS Information is everywhere in an organization Information is stored in databases –Database – maintains information about various.
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
Data and Knowledge Management CHAPTER Managing Data 5.2 The Database Approach 5.3 Database Management Systems 5.4 Data Warehouses and Data Marts.
Database Technical Session By: Prof. Adarsh Patel.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
CHAPTER 5 Data and Knowledge Management. CHAPTER OUTLINE 5.1 Managing Data 5.2 Big Data 5.3 The Database Approach 5.4 Database Management Systems 5.5.
Chapter 1 In-lab Quiz Next week
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
MIS 301 Information Systems in Organizations Dave Salisbury ( )
Lecture 2 An Overview of Relational Database IST 318 – DB Admin.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
311: Management Information Systems Database Systems Chapter 3.
Chapter 6.
PLUG IT IN 3 Fundamentals of Relational Database Operations.
Data and Knowledge Management
Data and Knowledge Management
Organizing Data Revision: pages 8-10, 31 Chapter 3.
Databases MGMT Summer 2012 Night #4, Lecture Part 1 Based on textbook Chapter 6.
Announcements. Data Management Chapter 12 Traditional File Approach  Structure Field  Record  File  Fixed All records have common fields, and a field.
1 Database Concepts 2 Definition of a Database An organized Collection Of related records.
Computer Science & Engineering 2111 Lecture 10 Introduction to Database Management Systems 1.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
Technology Guide 3 Data & Database. Agenda Definition File processing problems Database Selection criteria.
CHAPTER 5 Data and Knowledge Management. Annual Flood of Data from….. Credit card swipes s Digital video Online TV RFID tags Blogs Digital video.
Chapter 1 Introduction to Databases © Pearson Education Limited 1995, 2005.
Databases Unit 3_6. Flat File Databases One table containing data Data must be entered as a whole each time e.g. customer name and address each time (data.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
Database Systems Basic Data Management Concepts
Data resource management
Data and Knowledge Management CHAPTER Managing Data 5.2 The Database Approach 5.3 Database Management Systems 5.4 Data Warehouses and Data Marts.
Management Information Systems, 4 th Edition 1 Chapter 8 Data and Knowledge Management.
CS453: Databases and State in Web Applications (Part 2) Prof. Tom Horton.
Database Management Supplement 1. 2 I. The Hierarchy of Data Database File (Entity, Table) Record (info for a specific entity, Row) Field (Attribute,
Intro to Access and Data Management. Announcements Chapter 5 – Thursday Entropy Registration Quiz Due Date Extended to Weds. Dreamspark Registration Questions?
Foundations of Business Intelligence: Databases and Information Management.
Information Systems Today: Managing in the Digital World TB3-1 3 Technology Briefing Database Management “Modern organizations are said to be drowning.
Chapter 10 Database Management. Data and Information How are data and information related? p Fig Next processing data stored on disk Step.
0 / Database Management. 1 / Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.
CHAPTER 5 Data and Knowledge Management. CHAPTER OUTLINE 5.1 Managing Data 5.2 The Database Approach 5.3 Database Management Systems 5.4 Data Warehouses.
Introduction to Databases
© 2006 Pearson Education Canada Inc. 3-1 Chapter 3 Database Management PowerPoint Presentation Jack Van Deventer Ward M. Eagen.
© 2003 Prentice Hall, Inc.3-1 Chapter 3 Database Management Information Systems Today Leonard Jessup and Joseph Valacich.
Chapter 13.3: Databases Invitation to Computer Science, Java Version, Second Edition.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
DAY # 11 Haifa Abulaiha February 29,
Intro to MIS – MGS351 Databases and Data Warehouses
Databases and Data Warehouses Chapter 3
مدیریت اطلاعات و داده های سازمان یافته
What is a Database and Why Use One?
مدیریت اطلاعات و داده های سازمان یافته
Presentation transcript:

Intro to Access and Data Management

Announcements No Class – Monday Chapter 5 – Wednesday Access Tutorial & DB Creation - Friday

The Database Approach Database management system (DBMS) Minimize the following problems: Maximize the following: 1.Data redundancy 2.Data isolation 3.Data inconsistency 1.Data security 2.Data integrity 3.Data independence

How is data organized in a DB: Data Hierarchy Field Record File (or table) Database Is a grouping of

Data Hierarchy (continued) Field Record Database Table

Database Management Systems Database management system (DBMS) Focus of this course: Relational database model Related Tables (Primary Keys Important) Data dictionary How do you request data? Structured Query Language (SQL) - keywords Query by Example (QBE) – forms/templates

Relational DB Effectiveness: Normalization Normalization (most streamlined DB) Minimum redundancy Maximum data integrity Best processing performance Normalized data occurs when attributes in the table depend only on the primary key.

Exercise #1 – Online Shopping DB Create a new DB called OnlineShopping that will consist of three tables. Customers Orders Products

Exercise #1 – Online Shopping DB CustomersData_TypeField Size CustomerIDText5 FirstNameText50 LastNameText100 AddressText150 CityText30 StateText2 PostalCodeTextInput Mask PhoneNumTextInput Mask ProductsData_TypeField Size ProductIDText5 ProductNameText50 CategoryText50 Cost? OrdersData_TypeField Size OrderNo? CustomerID?? ProductID?? OrderDate?

Exercise #1 – Online Shopping DB Create the appropriate relationships for the tables in your database. Customers -> Order Products -> Order

Exercise #1 – Online Shopping DB Enter information into tables. Customers CustomerIDFirstNameLastNameAddressCItyStatePostalCodePhoneNumber 1111MichaelJordan123 Anywhere RdWilmingtonNC28401(910) LarryBird456 Somewhere StFrench LickIN47432(812) IrvinJohnson789 Nowhere AveLos AngelesCA90001(213) Products ProductIDProductNameCategoryCost 00001BasketballSporting Goods$ ShortsApparel$ ShoesApparel$75.00 Orders OrderNoCustomerIDProductIDOrderDate /18/ /18/ /18/ /20/2012 autonumber

Exercise #1 – Online Shopping DB Create a query to answer the following question: What is the total amount spent on all orders by each customer?