Chapter 6 Data Design.

Slides:



Advertisements
Similar presentations
1 Senn, Information Technology, 3 rd Edition © 2004 Pearson Prentice Hall James A. Senns Information Technology, 3 rd Edition Chapter 7 Enterprise Databases.
Advertisements

Chapter 1: The Database Environment
Chapter 7 System Models.
Relational Database and Data Modeling
Week 2 The Object-Oriented Approach to Requirements
Information Systems Today: Managing in the Digital World
Database Design Process
© Paradigm Publishing, Inc Access 2010 Level 1 Unit 1Creating Tables and Queries Chapter 2Creating Relationships between Tables.
Chapter Information Systems Database Management.
Access Tables 1. Creating a Table Design View Define each field and its properties Data Sheet View Essentially spreadsheet Enter fields You must go to.
Introduction to Databases
Chapter 2 Entity-Relationship Data Modeling: Tools and Techniques
Chapter 10: The Traditional Approach to Design
Systems Analysis and Design in a Changing World, Fifth Edition
McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 12 View Design and Integration.
©2008 Prentice Hall Business Publishing, Auditing 12/e, Arens/Beasley/Elder The Impact of Information Technology on the Audit Process Chapter 12.
Chapter 12: Designing Databases
PSSA Preparation.
Chapter 11 Describing Process Specifications and Structured Decisions
Essential Cell Biology
14 Databases Foundations of Computer Science ã Cengage Learning.
Chapter 13 The Data Warehouse
Management Information Systems, 10/e
© Copyright 2011 John Wiley & Sons, Inc.
Database Systems: Design, Implementation, and Management Tenth Edition
Introduction to Databases
Management Information Systems, Sixth Edition
Chapter 7 Data Design.
Client/Server Databases and the Oracle 10g Relational Database
Chapter 7.
3-1 Chapter 3 Data and Knowledge Management
Chapter 6 Data Design.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
System Analysis and Design
BUSINESS DRIVEN TECHNOLOGY
Systems Analysis and Design 9th Edition
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Chapter One Overview of Database Objectives: -Introduction -DBMS architecture -Definitions -Data models -DB lifecycle.
CHAPTER 6 DATA DESIGN.
PHASE 3: SYSTEMS DESIGN Chapter 7 Data Design.
Systems Analysis & Design 7 th Edition Chapter 8.
Phase 3. Systems Design Chapter 6 – Data Design.
Systems Analysis and Design 8th Edition
Chapter 1 Database Systems. Good decisions require good information derived from raw facts Data is managed most efficiently when stored in a database.
6-1 DATABASE FUNDAMENTALS Information is everywhere in an organization Information is stored in databases –Database – maintains information about various.
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
Database Technical Session By: Prof. Adarsh Patel.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Database System Concepts and Architecture
1 Introduction to Database Systems. 2 Database and Database System / A database is a shared collection of logically related data designed to meet the.
Concepts and Terminology Introduction to Database.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
Lecture 2 An Overview of Relational Database IST 318 – DB Admin.
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
Storing Organizational Information - Databases
- Ahmad Al-Ghoul Data design. 2 learning Objectives Explain data design concepts and data structures Explain data design concepts and data structures.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
Management Information Systems, 4 th Edition 1 Chapter 8 Data and Knowledge Management.
SYS364 Database Design Continued. Database Design Definitions Initial ERD’s Normalization of data Final ERD’s Database Management Database Models File.
Topic 7 – Data Design.  Explain file-oriented systems and how they differ from database management systems  Explain data design terminology, including.
Chapter 4 Relational Databases
Databases and Information Management
MANAGING DATA RESOURCES
SYSTEMS ANALYSIS & DESIGN
MANAGING DATA RESOURCES
Databases and Information Management
Database Design Chapter 7.
Presentation transcript:

Chapter 6 Data Design

Design Phase Description Systems Design is the third of five phases in the systems development life cycle (SDLC) Begin the physical design of the IS that meet the specifications described in the system requirements document IS design tasks include data design, user interface design, and system architecture

Chapter Objectives Explain data design concepts and data structures Describe file processing systems and various types of files Understand database systems and define the components of a database management system (DBMS) 3

Chapter Objectives Explain data design terminology, including entities, fields, common fields, records, files, tables, and key fields Describe data relationships, draw an entity-relationship diagram, define cardinality and use cardinality notation Explain the concept of normalization Understand the steps in database design 3

Chapter Objectives Describe hierarchical, network, relational, and object-oriented database models Explain data warehousing/data mining Differentiate between logical and physical storage and records Explain data control measures

Introduction Develop a physical plan for data organization, storage, and retrieval Begins with a review of data design concepts and terminology, then discusses file-based systems and database systems, including Web-based databases Concludes with a discussion of data mining, data warehousing, physical design issues, logical and physical records, data storage formats, and data controls 4

Data Design Concepts Before constructing an IS, a systems analyst must understand basic design concepts, including data structures and the characteristics of file-oriented and database systems

Data Design Concepts Data Structures A file or table contains data about people, places or events that interact with the system File-oriented system File processing Database system

Data Design Concepts Overview of File Processing Some companies use file processing to handle large volumes of structured data Although less common today, file processing can be more efficient and cost less than a DBMS in certain situations

Data Design Concepts Overview of File Processing Potential problems Data redundancy Data integrity Rigid data structure Uses various types of files Master file Table file Transaction file Work file – scratch file Security file History file

Data Design Concepts Overview of Database Systems A properly designed database system offers a solution to the problems of file processing Provides an overall framework that avoids data redundancy and supports a real-time, dynamic environment

Data Design Concepts Overview of Database Systems

Data Design Concepts Overview of Database Systems A database management system (DBMS) is a collection of tools, features, and interfaces that enables users to add, update, manage, access, and analyze the contents of a database The main advantage of a DBMS is that it offers timely, interactive, and flexible data access

Data Design Concepts Overview of Database Systems Advantages Scalability Better support for client/server systems Economy of scale Flexible data sharing Enterprise-wide application – database administrator (DBA) Stronger standards Controlled redundancy Better security Increased programmer productivity Data independence

Data Design Concepts Database Tradeoffs Because DBMSs are powerful, they require more expensive hardware, software, and data networks capable of supporting a multiuser environment More complex than a file processing system Procedures for security, backup, and recovery are more complicated and critical

DBMS Components Interfaces for Users, Database Administrators, and Related Systems Users Query language Query by example (QBE) SQL (structured query language) Database Administrators A DBA is responsible for DBMS management and support

DBMS Components Data Manipulation Language A data manipulation language (DML) controls database operations, including storing, retrieving, updating, and deleting data

Data Design Terminology Definitions Entity Table or file Field Attribute - Common field Record Tuple

Data Design Terminology Key Fields Primary key Combination key Composite key Concatenated key Multi-valued key Candidate key Nonkey field Foreign key Secondary key

Data Design Terminology Referential Integrity Validity checks can help avoid data input errors In a relational database, referential integrity means that a foreign key value cannot be entered in one table unless it matches an existing primary key in another table

Steps to Build Database Understand and list business rules Define major processes Define information components Assign all data elements to the entities Develop ER model Define cardinality and keys Identify all dependencies Normalize the entities

Data Relationships Entity-Relationship Diagrams

Data Relationships A relationship is a logical link between entities based on how they interact Entity-Relationship Diagrams One-to-one relationship (1:1) One-to-many relationship (1:M) Many-to-many relationship (M:N) Cardinality Cardinality notation Crow’s foot notation Unified Modeling Language (UML)

Normalization Normalization Table design Involves four stages: unnormalized design, first normal form, second normal form, and third normal form Most business-related databases must be designed in third normal form

Normalization Repeating Groups and Unnormalized Design Repeating group - Often occur in manual documents prepared by users Unnormalized design

Normalization First Normal Form A table is in first normal form (1NF) if it does not contain a repeating group To convert, you must expand the table’s primary key to include the primary key of the repeating group

Normalization Second Normal Form To understand second normal form (2NF), you must understand the concept of functional dependence Field X is functionally dependent on field Y if the value of field X depends on the value of field Y

Normalization Second Normal Form A standard process exists for converting a table from 1NF to 2NF Create and name a separate table for each field in the existing primary key Create a new table for each possible combination of the original primary key fields Study the three tables and place each field with its appropriate primary key

Normalization Second Normal Form Four kinds of problems are found with 1NF description that do not exist with 2NF Consider the work necessary to change a particular product’s description 1NF tables can contain inconsistent data Adding a new product is a problem Deleting a product is a problem

Normalization Third Normal Form 3NF design avoids redundancy and data integrity problems that still can exist in 2NF designs A table design is in third normal form (3NF) if it is in 2NF and if no nonkey field is dependent on another nonkey field

Normalization Third Normal Form To convert the table to 3NF, you must remove all fields from the 2NF table that depend on another nonkey field and place them in a new table that uses the nonkey field as a primary key

Normalization A Normalization Example To show the normalization process, consider the familiar situation in Figure 6-24 which might depict several entities in a school advising system: ADVISOR, COURSE, and STUDENT The relationships among the three entities are shown in the ERD in Figure 6-25

Steps in Database Design Create the initial ERD Assign all data elements to entities Create 3NF designs for all tables, taking care to identify all primary, secondary, and foreign keys Verify all data dictionary entries After creating your final ERD and normalized table designs, you can transform them into a database

Data Storage Data Warehousing Data warehouse - dimensions Without a data warehouse it would be difficult for a user to extract data that spans several information systems and time frames Allows users to retrieve and analyze the data easily

Data Control File and database control must include all measures necessary to ensure that data storage is correct, complete, and secure A well-designed DBMS must provide built-in control and security features, including subschemas, passwords, encryption, audit trail files, and backup and recovery procedures to maintain data

Data Control User ID Password Backup Recovery procedures Audit log files Audit fields Encryption

Chapter Summary Files and tables contain data about people, places, things, or events that affect the information system DBMS designs are more powerful and flexible than traditional file-oriented systems 49

Chapter Summary Data design tasks include creating an initial ERD; assigning data elements to an entity; normalizing all table designs; and completing the data dictionary entries for files, records, and data elements The four basic database models are hierarchical, network, relational, and object-oriented 49

Chapter Summary Physical storage is hardware-related and involves reading and writing blocks of binary data to physical media File and database control measures include limiting access to the data, data encryption, backup/recovery procedures, audit-trail files, and internal audit fields 49

Review: Analysis Phase Deliverable – Systems Requirement Document Fact-finding of current system and identify system requirements Develop logical model (WHAT IS must do) Develop physical model (HOW IS is constructed) Evaluate development strategies Create the System Requirement Document