Databases and Information Management

Slides:



Advertisements
Similar presentations
C6 Databases.
Advertisements

By: Mr Hashem Alaidaros MIS 211 Lecture 4 Title: Data Base Management System.
Relational Databases Chapter 4.
Information Technology in Organizations
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
Chapter 3 Foundations of Business Intelligence: Databases and Information Management.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Page 1 ISMT E-120 Introduction to Microsoft Access & Relational Databases The Influence of Software and Hardware Technologies on Business Productivity.
6.1 © 2007 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
Page 1 ISMT E-120 Desktop Applications for Managers Introduction to Microsoft Access.
5.1 © Copyright © 2011 Pearson Education, Inc. publishing as Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
COMPUTING FOR BUSINESS AND ECONOMICS-III. Lecture no.6 COURSE INSTRUCTOR- Ms. Tehseen SEMESTER- Summer 2010.
Database Design Concepts
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
Chapter 6: Foundations of Business Intelligence - Databases and Information Management Dr. Andrew P. Ciganek, Ph.D.
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
CHAPTER EIGHT Accessing Data Processing Databases.
CHAPTER EIGHT Accessing Data Processing Databases.
Lecturer: Gareth Jones. How does a relational database organise data? What are the principles of a database management system? What are the principal.
Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Chapter.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Fanny Widadie, S.P, M.Agr 1 Database Management Systems.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
The University of Akron Dept of Business Technology Computer Information Systems The Relational Model: Concepts 2440: 180 Database Concepts Instructor:
Database Fundamentals CSC105 Furman University Peggy Batchelor.
Database Management Supplement 1. 2 I. The Hierarchy of Data Database File (Entity, Table) Record (info for a specific entity, Row) Field (Attribute,
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Foundations of Business Intelligence: Databases and Information Management.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
6.1 © 2010 by Prentice Hall 4 Chapter Databases and Information Management Databases and Information Management.
© 2010 by Prentice Hall Foundations of Business Intelligence: Databases and Information Management Foundations of Business Intelligence: Databases and.
Foundations of Business Intelligence: Databases and Information Management Chapter 6 VIDEO CASES Case 1a: City of Dubuque Uses Cloud Computing and Sensors.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
1 SQL SERVER 2005 Express CE-105 SPRING 2007 Engr. Faisal ur Rehman.
Copyright © 2013 Dorling Kindersley (India) Pvt. Ltd. Management Information Systems: Managing the Digital Firm, 12eAuthors: Kenneth C. Laudon and Jane.
Chapter 5 Foundations of Business Intelligence: Databases and Information Management.
Chapter 5 Foundations of Business Intelligence: Databases and Information Management.
Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT VIDEO CASES Case 1: Maruti Suzuki Business Intelligence and Enterprise.
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
Client/Server Databases and the Oracle 10g Relational Database
IS 130 Information systems 1
Database Systems Chapter 3 1.
Information Systems Today: Managing in the Digital World
Fundamentals of Information Systems, Sixth Edition
Fundamentals & Ethics of Information Systems IS 201
Chapter 12 Information Systems.
CIS 207 The Relational Database Model
Chapter 4 Relational Databases
Chapter 6 Foundations of Business Intelligence: Databases and Information Management VIDEO CASES Case 1a: City of Dubuque Uses Cloud Computing and Sensors.
Database Management  .
RELATIONAL DATABASE MODEL
Databases and Information Management
What is a Database and Why Use One?
Chapter 3 The Relational Database Model
MANAGING DATA RESOURCES
File Systems and Databases
Managing data Resources:
Chapter 6 Foundations of Business Intelligence: Databases and Information Management.
Chapter 6 Foundations of Business Intelligence: Databases and Information Management.
Data Model.
Chapter 5 Foundations of Business Intelligence: Databases and Information Management VIDEO CASES Case 1a: City of Dubuque Uses Cloud Computing and Sensors.
Databases and Information Management
Databases and Information Management
INTRODUCTION A Database system is basically a computer based record keeping system. The collection of data, usually referred to as the database, contains.
Database Design Chapter 7.
Presentation transcript:

Databases and Information Management Chapter 6 Databases and Information Management

File Organization Terms & Concepts File: Group of records of same type i.e. entity Entity: Person, place, thing on which we store information. Example: Course, Student Attribute: Each characteristic, or quality describing entity E.g., Attributes “Student_ID, Grade” belong to entity “COURSE” Field: Group of characters as word(s) or number e.g. a person’s name, age Record: Group of related fields Database: Group of related files

Database & Database Management Systems (DBMS) Database technology helps to eliminate many of the problems of the data duplication Serves many applications by centralizing data and controlling redundant data Database management system (DBMS) A DBMS is a software that allows an organization to centralize data, manage them efficiently, and provide access to the stored data by application programs Acts as an interface among applications and data files

Human Resources Database With Different Views A single human resources database provides many different views of data, depending on the information requirements of the user. Illustrated here are two possible views, one of interest to a benefits specialist and one of interest to a member of the company’s payroll department. FIGURE 6-3

Relational DBMS Relational DBMS Represent data as two-dimensional tables called relations or files Relationships are established among related tables Each table contains data on entity and attributes Table: grid of columns and rows Rows: Records for different entities Fields (columns): Represents attribute for entity Key field: Field used to uniquely identify each record Primary key: Field in table used for key fields Foreign key: Primary key used in second table as look-up field to identify records from original table

Relational Database Table A relational database organizes data in the form of two-dimensional tables. Illustrated here are tables for the entities SUPPLIER and PART showing how they represent each entity and its attributes. Supplier Number is a primary key for the SUPPLIER table and a foreign key for the PART table. FIGURE 6-4

Relational Database Table A relational database organizes data in the form of two-dimensional tables. Illustrated here are tables for the entities SUPPLIER and PART showing how they represent each entity and its attributes. Supplier Number is a primary key for the SUPPLIER table and a foreign key for the PART table. FIGURE 6-4 (cont.)

Three Basic Operations of Relational DBMS The select, join, and project operations enable data from two different tables to be combined and only selected attributes to be displayed. FIGURE 6-5

Capabilities of DBMS Data definition capability: Specifies structure of database content, used to create tables and define characteristics of fields Data dictionary: Automated or manual file storing definitions of data elements and their characteristics Data manipulation language: Used to add, change, delete, retrieve data from database Structured Query Language (SQL) Microsoft Access user tools to generate SQL Many DBMS have report generation capabilities for creating polished reports (Crystal Reports)

Data Dictionary MICROSOFT ACCESS DATA DICTIONARY FEATURES Microsoft Access has a rudimentary data dictionary capability that displays information about the size, format, and other characteristics of each field in a database. Displayed here is the information maintained in the SUPPLIER table. The small key icon to the left of Supplier Number indicates that it is a key field. FIGURE 6-6

Querying EXAMPLE OF AN SQL QUERY FIGURE 6-7 Illustrated here are the SQL statements for a query to select suppliers for parts 137 or 150. They produce a list with the same results as Figure 6-5.

Querying AN ACCESS QUERY Illustrated here is how the query in Figure 6-7 would be constructed using Microsoft Access query building tools. It shows the tables, fields, and selection criteria used for the query. FIGURE 6-8

Designing Database To design a database you must understand the relationships among data and tables, the type of data in tables, The design process identifies relationships among data elements (fields)/tables and the most efficient way of grouping fields in specific tables The design process also identifies redundant data elements To group data elements in small and related tables, normalization process is done Referential integrity: Referential integrity is a property of data which, when satisfied, requires every value of one column of a table to exist as a value of another column in a different table

Normalization Normalization AN UNNORMALIZED RELATION FOR ORDER NORMALIZED TABLES CREATED FROM ORDER

Entity-Relationship Diagram AN ENTITY-RELATIONSHIP DIAGRAM Entity-relationship diagram (ERD) Used by database designers to document the data model Illustrates relationships between entities AN ENTITY-RELATIONSHIP DIAGRAM This diagram shows the relationships between the entities SUPPLIER, PART, LINE_ITEM, and ORDER that might be used to model the database in Figure 6-10.