Chapter 12: Designing Databases

Slides:



Advertisements
Similar presentations
Chapter 10: Designing Databases
Advertisements

Chapter 12: Designing Databases
C6 Databases.
BUSINESS DRIVEN TECHNOLOGY Plug-In T4 Designing Database Applications.
Introduction to Databases
Management Information Systems, Sixth Edition
File Systems and Databases
Database Design Conceptual –identify important entities and relationships –determine attribute domains and candidate keys –draw the E-R diagram Logical.
CS 432 Object-Oriented Analysis and Design
Data Management Design
Organizing Data & Information
1 © Prentice Hall, 2002 Chapter 5: Logical Database Design and the Relational Model Modern Database Management 6 th Edition Jeffrey A. Hoffer, Mary B.
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Michael F. Price College of Business Chapter 6: Logical database design and the relational model.
IST Databases and DBMSs Todd S. Bacastow January 2005.
INTRODUCTION TO DATABASE USING MS ACCESS 2013 PART 2 NOVEMBER 4, 2014.
PHASE 3: SYSTEMS DESIGN Chapter 7 Data Design.
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2007 (Week 3, Tuesday 9/4/2007)
Intro to MIS – MGS351 Databases and Data Warehouses Chapter 3.
2Object-Oriented Analysis and Design with the Unified Process Objectives  Describe the differences and similarities between relational and object-oriented.
2Object-Oriented Analysis and Design with the Unified Process Objectives  Describe the differences and similarities between relational and object-oriented.
ASP.NET Programming with C# and SQL Server First Edition
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management Dave Salisbury ( )
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
1 Chapter 1 Overview of Database Concepts. 2 Chapter Objectives Identify the purpose of a database management system (DBMS) Distinguish a field from a.
Concepts and Terminology Introduction to Database.
Organizing Data and Information AD660 – Databases, Security, and Web Technologies Marcus Goncalves Spring 2013.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
Architecture for a Database System
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 ( )
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
Copyright 2008 McGraw-Hill Ryerson 1 TECHNOLOGY PLUG-IN T5 DESIGNING DATABASE APPLICATIONS.
Lecture2: Database Environment Prepared by L. Nouf Almujally & Aisha AlArfaj 1 Ref. Chapter2 College of Computer and Information Sciences - Information.
1 Chapter 1 Introduction. 2 Introduction n Definition A database management system (DBMS) is a general-purpose software system that facilitates the process.
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
2Object-Oriented Analysis and Design with the Unified Process Objectives  Describe the differences and similarities between relational and object-oriented.
1 Relational Databases and SQL. Learning Objectives Understand techniques to model complex accounting phenomena in an E-R diagram Develop E-R diagrams.
Lecture2: Database Environment Prepared by L. Nouf Almujally 1 Ref. Chapter2 Lecture2.
Chapter 1Introduction to Oracle9i: SQL1 Chapter 1 Overview of Database Concepts.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
DataBase Management System What is DBMS Purpose of DBMS Data Abstraction Data Definition Language Data Manipulation Language Data Models Data Keys Relationships.
Fanny Widadie, S.P, M.Agr 1 Database Management Systems.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
Prepared By Prepared By : VINAY ALEXANDER ( विनय अलेक्सजेंड़र ) PGT(CS),KV JHAGRAKHAND.
Object-Relational Modeling. What Is a Relational Data Model? Based on the concept of relations (tables of data) Relationships established by matching.
Unit 4 Object Relational Modeling. Key Concepts Object-Relational Modeling outcomes and process Relational data model Normalization Anomalies Functional.
Programming Logic and Design Fourth Edition, Comprehensive Chapter 16 Using Relational Databases.
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
IAD 2263: System Analysis and Design Chapter 7: Designing System Databases, Interfaces and Security.
BSA206 Database Management Systems Lecture 2: Introduction to Oracle / Overview of Database Concepts.
INFORMATION X INFO425: Systems Design Chapter 13 Database Design.
3/6: Data Management, pt. 2 Refresh your memory Relational Data Model
Chapter 10 Designing Databases. Objectives:  Define key database design terms.  Explain the role of database design in the IS development process. 
Logical Database Design and the Relational Model.
6-1 © Prentice Hall, 2007 Topic 6: Object-Relational Modeling Object-Oriented Systems Analysis and Design Joey F. George, Dinesh Batra, Joseph S. Valacich,
Chapter 8: Object-Relational Modeling Object-Oriented Systems Analysis and Design Joey F. George, Dinesh Batra, Joseph S. Valacich, Jeffrey A. Hoffer.
8-1 © Prentice Hall, 2007 Chapter 8: Object-Relational Modeling Object-Oriented Systems Analysis and Design Joey F. George, Dinesh Batra, Joseph S. Valacich,
1 10 Systems Analysis and Design in a Changing World, 2 nd Edition, Satzinger, Jackson, & Burd Chapter 10 Designing Databases.
Data Resource Management Lecture 8. Traditional File Processing Data are organized, stored, and processed in independent files of data records In traditional.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Managing Data Resources File Organization and databases for business information systems.
12. Chapter 12: Designing Databases Systems Analysis and Design in a Changing World, Fourth Edition 12.
Chapter 4 Relational Databases
Presentation transcript:

Chapter 12: Designing Databases Systems Analysis and Design in a Changing World, Fourth Edition Chapter 12: Designing Databases

Learning Objectives Describe the differences and similarities between relational and object-oriented database management systems Design a relational database schema based on an entity-relationship diagram Design an object database schema based on a class diagram Design a relational schema to implement a hybrid object-relational database Describe the different architectural models for distributed databases Systems Analysis and Design in a Changing World, 5th Edition

Overview This chapter describes design of relational and OO data models Developers transform conceptual data models into detailed database models Entity-relationship diagrams (ERDs) for traditional analysis Class diagrams for object-oriented (OO) analysis Detailed database models are implemented with database management system (DBMS)‏ Systems Analysis and Design in a Changing World, 5th Edition

Databases and Database Management Systems Databases (DB) – integrated collections of stored data that are centrally managed and controlled Database management system (DBMS) – system software that manages and controls access to database Databases described by a schema – description of structure, content, and access controls Systems Analysis and Design in a Changing World, 5th Edition

Components of a DB and DBMS Figure 13-1 Systems Analysis and Design in a Changing World, 5th Edition

Important DBMS Capabilities Simultaneous access by multiple users and applications Access to data without application programs (via a query language)‏ Organizational data management with uniform access and content controls Systems Analysis and Design in a Changing World, 5th Edition

Database Models Impacted by technology changes since 1960s Model types Hierarchical Network Relational Object-oriented Most current systems use relational or object- oriented data models Systems Analysis and Design in a Changing World, 5th Edition

Relational Databases Relational database management system (RDBMS) organizes data into tables or relations Tables are two dimensional data structures Tuples – rows or records Fields – columns or attributes Tables have primary key field(s) that can be used to identify unique records Keys relate tables to each other Systems Analysis and Design in a Changing World, 5th Edition

Partial Display of Relational Database Table Figure 13-2 Systems Analysis and Design in a Changing World, 5th Edition

Designing Relational Databases Create table for each entity type Choose or invent primary key for each table Add foreign keys to represent one-to-many relationships Create new tables to represent many-to-many relationships Systems Analysis and Design in a Changing World, 5th Edition

Designing Relational Databases (continued)‏ Define referential integrity constraints Evaluate schema quality and make necessary improvements Choose appropriate data types and value restrictions (if necessary) for each field Systems Analysis and Design in a Changing World, 5th Edition

Relationship Between Data in Two Tables Figure 13-4 Systems Analysis and Design in a Changing World, 5th Edition

RMO Entity-Relationship Diagram Figure 13-5 Systems Analysis and Design in a Changing World, 5th Edition

Representing Relationships Relational databases use foreign keys to represent relationships One-to-many relationship Add primary key field of “one” entity type as foreign key in table that represents “many” entity type Many-to-many relationship Use the primary key field(s) of both entity types Use (or create) an associative entity table to represent relationship Systems Analysis and Design in a Changing World, 5th Edition

Entity Tables with Primary Keys Figure 13-7 Systems Analysis and Design in a Changing World, 5th Edition

Represent One-to-Many Relationships by Adding Foreign Keys Figure 13-8 Systems Analysis and Design in a Changing World, 5th Edition

Enforcing Referential Integrity Consistent relational database state Every foreign key value also exists as a primary key value DBMS enforces referential integrity automatically after schema designer identifies primary and foreign keys Systems Analysis and Design in a Changing World, 5th Edition

DBMS Referential Integrity Enforcement When rows containing foreign keys are created DBMS ensures that value also exists as a primary key in a related table When row is deleted DBMS ensures no foreign keys in related tables have same value as primary key of deleted row When primary key value is changed DBMS ensures no foreign key values in related tables contain the same value Systems Analysis and Design in a Changing World, 5th Edition

Evaluating Schema Quality High-quality data model has Uniqueness of table rows and primary keys Ease of implementing future data model changes (flexibility and maintainability)‏ Lack of redundant data (database normalization)‏ Database design is not objective or quantitatively measured; it is experience and judgment based Systems Analysis and Design in a Changing World, 5th Edition

Database Normalization Normal forms minimize data redundancy First normal form (1NF) – no repeating fields or groups of fields Functional dependency – one-to-one relationship between the values of two fields 2NF – in 1NF and if each non-key element is functionally dependent on entire primary key 3NF – in 2NF and if no non-key element is functionally dependent on any other non-key element Systems Analysis and Design in a Changing World, 5th Edition

What Is a Functional Dependency? The functional dependency of attribute B on attribute A is represented by an arrow A  B, and implies that every valid value of attribute A uniquely determines the value of attribute B. Determinant – the attribute on the left side of the arrow All primary keys are determinants

Second Normal Form (2NF) 1NF, plus no partial key functional dependencies If the primary key is a composite key (composed of more than one attribute) it is possible for an attribute to be functionally dependent on only part of the key Avoid partial dependencies for 2NF

This table has a composite key (Emp_ID and Course) Functional dependencies: Emp_ID  Name, Dept, Salary Emp_ID, Course  Date_Completed Name, Dept, and Salary all have partial key dependencies, causing duplication of data.

Solution: Break the relation into two separate relations. 1:N relationship linked by Emp_ID No partial key dependencies Well structured

Third Normal Form (3NF) 2NF, plus no transitive functional dependencies Given three attributes in a relation A, B, C, if A  B and B  C, this forms a transitive functional dependency Avoid transitive dependencies for 3NF

Here, Customer_ID  Salesperson, and Salesperson  Region, cause a transitive dependency

Solution: Break the relation into two separate relations. 1:N relationship linked by SalesPerson No transitive dependencies Well structured

Object-Oriented Databases Direct extension of OO design and programming paradigm ODBMS stores data as objects Direct support for method storage, inheritance, nested objects, object linking, and programmer- defined data types Object Definition Language (ODL)‏ Standard language for describing structure and content of an object database Systems Analysis and Design in a Changing World, 5th Edition

Designing Object Databases Determine which classes require persistent storage Define persistent classes Represent relationships among persistent classes Choose appropriate data types and value restrictions (if necessary) for each field Systems Analysis and Design in a Changing World, 5th Edition

Representing Classes Transient classes Persistent classes Objects exist only during lifetime of program or process Examples: view layer window, pop-up menu Persistent classes Objects not destroyed when program or process ceases execution. State must be remembered. Exist independently of program or process Examples: customer information, employee information Systems Analysis and Design in a Changing World, 5th Edition

Representing Relationships Object identifiers Used to identify objects uniquely Physical storage address or reference Relate objects of one class to another ODBMS uses attributes containing object identifiers to find objects that are related to other objects Keyword relationship can be used to declare relationships between classes Systems Analysis and Design in a Changing World, 5th Edition

Representing Relationships (continued)‏ Advantages include ODBMS assumes responsibility for determining connection among objects ODBMS assumes responsibility for maintaining referential integrity Type of relationships 1:1, 1:M, M:M (one-to-one, one-to-many, many-to- many)‏ Association class used with M:M Systems Analysis and Design in a Changing World, 5th Edition

RMO Domain Model Class Diagram Figure 13-15 Systems Analysis and Design in a Changing World, 5th Edition

One-to-One Relationship Represented with Attributes Containing Object Identifiers Figure 13-16 Systems Analysis and Design in a Changing World, 5th Edition

One-to-Many Relationship Between Customer and Order Classes Figure 13-17 Systems Analysis and Design in a Changing World, 5th Edition

One-to-Many Relationship Represented with Attributes Containing Object Identifiers Figure 13-18 Systems Analysis and Design in a Changing World, 5th Edition

Many-to-Many Relationship between Employee and Project Classes Figure 13-19 Systems Analysis and Design in a Changing World, 5th Edition

Generalization Hierarchy within the RMO Class Diagram Figure 13-21 Systems Analysis and Design in a Changing World, 5th Edition

Hybrid Object-Relational Database Design RDBMS (hybrid DBMS) used to store object attributes and relationships Design complete relational schema and simultaneously design equivalent set of classes Mismatches between relational data and OO Systems Analysis and Design in a Changing World, 5th Edition

Classes and Attributes Designers store classes and object attributes in RDBMS by table definition Relational schema can be designed based on class diagram Table is created for each class Fields of each table same as attributes of class Row holds attribute values of single object Key field is chosen for each table Systems Analysis and Design in a Changing World, 5th Edition

Relationships Relationships are represented with foreign keys Foreign key values serve same purpose as object identifiers in ODBMS 1:M relationship – add primary key field of class on “one” side of the relationship to table representing class on “many” side M:M relationship – create new table that contains primary key fields of related class tables and attributes of the relationship itself Systems Analysis and Design in a Changing World, 5th Edition

Data Access Classes OO design based on a three-layer architecture Data access classes are implementation bridge between data stored in program objects and data in relational database Methods add, update, find, and delete fields and rows in table or tables that represent the class Methods encapsulate logic needed to copy data values from problem domain class to database and vice versa Systems Analysis and Design in a Changing World, 5th Edition

Interaction Among a Domain Class, a Data Access Class, and the DBMS Figure 13-25 Systems Analysis and Design in a Changing World, 5th Edition

Data Types Storage format and allowable content of program variable, object state variable, or database field or attribute Primitive data types – directly implemented Memory address (pointer), Boolean, integer, and so on Complex data types – user-defined Dates, times, audio streams, video images, URLs Systems Analysis and Design in a Changing World, 5th Edition

Relational DBMS Data Types Designer must choose appropriate data type for each field in relational database schema Choice for many fields is straightforward Names and addresses use a set of fixed- or variable- length character arrays Inventory quantities can use integers Item prices can use real numbers Complex data types (DATE, LONG, LONGRAW)‏ Systems Analysis and Design in a Changing World, 5th Edition

Subset of Oracle RDBMS Data Types Figure 13-26 Systems Analysis and Design in a Changing World, 5th Edition

Object DBMS Data Types Use set of primitive and complex data types comparable to RDBMS data types Schema designer can create new data types and associated constraints Classes are complex user-defined data types that combine traditional concept of data with processes (methods) to manipulate data Flexibility to define new data types is one reason that OO tools are widely used Systems Analysis and Design in a Changing World, 5th Edition

Distributed Databases Rare for all organizational data to be stored in a single database in one location Different information systems in an organization are developed at different times Parts of an organization’s data may be owned and managed by different units System performance is improved when data is near primary applications Systems Analysis and Design in a Changing World, 5th Edition

Single Database Server Architecture Figure 13-27 Systems Analysis and Design in a Changing World, 5th Edition

Partitioning Database Schema into Client Access Subsets Figure 13-29 Systems Analysis and Design in a Changing World, 5th Edition

Partitioned Database Server Architecture Figure 13-30 Systems Analysis and Design in a Changing World, 5th Edition

Federated Database Server Architecture Figure 13-31 Systems Analysis and Design in a Changing World, 5th Edition

RMO Distributed Database Architecture Starting point for design was information about data needs of geographically dispersed users RMO gathered information during analysis phase RMO decided to manage database using Park City data center mainframe RMO is evaluating single-server vs. replicated and partitioned database server architectures Information on network traffic and costs needed Systems Analysis and Design in a Changing World, 5th Edition

Single-Server Database Server Architecture for RMO Figure 13-32 Systems Analysis and Design in a Changing World, 5th Edition

Replicated and Partitioned Database Server Architecture for RMO Figure 13-33 Systems Analysis and Design in a Changing World, 5th Edition

Summary Modern information systems store data in database and access and manage data using DBMS Relational DBMS is commonly used Object DBMS is increasing in popularity Key activity of systems design is developing relational or object database schema Relational database is collection of data stored in tables and is developed from entity-relationship diagram Systems Analysis and Design in a Changing World, 5th Edition

Summary (continued)‏ Object database stores data as collection of related objects and is developed from class diagram Objects can also be stored in RDBMS RDBMS cannot store methods RDBMS cannot directly represent inheritance Medium and larger information systems typically use multiple databases or database servers in various geographic locations Systems Analysis and Design in a Changing World, 5th Edition