Lecture Systems analysis and design with UML (3 e) Chapter 10 Data management layer design

33 523 0
Lecture Systems analysis and design with UML (3 e)  Chapter 10 Data management layer design

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

After completing this chapter, students will be able to: Become familiar with several objectpersistence formats, be able to map problem domain objects to different objectpersistence formats, be able to apply the steps of normalization to a relational database, be able to optimize a relational database for object storage and

Chapter 10: Data Management Layer Design PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Objectives • Become familiar with several object-persistence formats • Be able to map problem domain objects to different objectpersistence formats • Be able to apply the steps of normalization to a relational database • Be able to optimize a relational database for object storage and access • Become familiar with indexes for relational databases • Be able to estimate the size of a relational database • Be able to design the data access and manipulation classes PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved The Data Management Layer • Includes both – data access and manipulation logic, and – the actual design of the storage • Four-step design approach Selecting the format of the storage Mapping problem-domain objects to object-persistence format optimizing the object-persistence format designing the data access & manipulation classes PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved OBJECT PERSISTENCE FORMATS PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Object Persistence Formats • • • • Files (Sequential and Random) Relational databases Object-relational databases Object-oriented databases PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Sample File Fictitious customer database PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Sequential & Random Access Files • Sequential access files allow sequential operations – Read, write, and search • Efficient for report writing • Searches are not efficient because an average of 50% of records have to be accessed • Two versions – Ordered – unordered PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Random Access Files • Allow only random or direct file operations • Good for finding and updating a specific object • Inefficient report writing PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Application File Types • • • • • Master Files Look-up files Transaction files Audit file History file PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Relational Databases • Collection of tables – Comprised of fields that define entities – Primary key has unique values in each row of a table – Foreign key is primary key of another table • Tables related to each other – Primary key field of a table is a field of another table and called a foreign key – Relationship established by a foreign key of one table connecting to the primary key of another table PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Optimizing Storage Efficiency • No redundant data – Wastes space – Allows more room for error • Few null values in tables – Difficult to interpret PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Normalization • Tells us how well-formed data is in an RDBMS • Reduces data redundancies • First four levels of normalization are – Normal Form: – Normal Form: – Normal Form: – Normal Form: normalization rules not applied no multi-valued fields depend on a whole primary keys no fields depend on non-primary key fields PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Steps of Normalization PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Optimizing Storage Example – 0NF PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Optimizing Storage Example – 1NF PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved 1NF Sample Records PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Optimizing Storage Example – 2NF PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved 2NF Sample Records PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Optimizing Storage Example – 3NF PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved NONFUNCTIONAL REQUIREMENTS AND DATA MANAGEMENT LAYER DESIGN PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Non-Functional Requirements • Operational Requirements – DAM layer technologies that must be used • Performance Requirements – DAM layer speed and capacity • Security Requirements – Access controls, encryption, and backup • Political & Cultural Requirements – Date formats, currency conversions PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved DESIGNING DATA ACCESS AND MANIPULATION CLASSES PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Data Access & Manipulation • Data access & manipulation (DAM) classes act as a translator between the objectpersistence and the problem domain objects • There should be one DAM class for each concrete problem domain class PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Example DAM Classes PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Summary • Object Persistence Formats • Mapping Problem-Domain Objects to ObjectPersistence Formats • Optimizing RDBMS-Based Object Storage • Nonfunctional Requirements and Data Management Layer Design • Designing Data Access and Manipulation Classes PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved ... Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved The Data Management Layer • Includes both – data access and manipulation... Random) Relational databases Object-relational databases Object-oriented databases PowerPoint Presentation for Dennis, Wixom, & Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright ©... Tegarden Systems Analysis and Design with UML, 3rd Edition Copyright © 2009 John Wiley & Sons, Inc All rights reserved Object Persistence Formats • • • • Files (Sequential and Random) Relational databases

Ngày đăng: 16/05/2017, 13:35

Từ khóa liên quan

Mục lục

  • Chapter 10: Data Management Layer Design

  • Objectives

  • The Data Management Layer

  • Object Persistence Formats

  • Slide 5

  • Sample File

  • Sequential & Random Access Files

  • Random Access Files

  • Application File Types

  • Relational Databases

  • Database Management System

  • Referential Integrity Example

  • The Structured Query Language

  • Selecting Persistence Formats

  • Mapping Problem-Domain Objects to Object-Persistence Formats

  • Mapping PD Classes to RDBMS

  • Slide 17

  • Optimizing RDBMS-Based Object Storage

  • Optimizing Storage Efficiency

  • Normalization

Tài liệu cùng người dùng

Tài liệu liên quan