Modern Systems Analysis and Design
|
|
|
- Madeline Doyle
- 9 years ago
- Views:
Transcription
1 Modern Systems Analysis and Design Prof. David Gadish Structuring System Data Requirements
2 Learning Objectives Concisely define each of the following key data modeling terms: entity type, attribute, multivalued attribute, relationship, degree, cardinality, business rule, associative entity, trigger, supertype, subtype. Draw an entity relationship (E R) diagram to represent common business situations. Explain the role of conceptual data modeling in the overall analysis and design of an information system. 2
3 Learning Objectives (Cont.) Distinguish between unary, binary, and ternary relationships and give an example of each. Define four basic types of business rules in a conceptual data model. Relate data modeling to process and logic modeling as different views of describing an information system. 3
4 Conceptual Data Modeling Conceptual data modeling: a detailed model that captures the overall structure of data in an organization. Independent of any database management system (DBMS) or other implementation considerations. 4
5 Conceptual Data Modeling (Cont.) 5
6 The Conceptual Data Modeling Process Develop a data model for the current system. Develop a new conceptual data model that includes all requirements of the new system. In the design stage, the conceptual data model is translated into a physical design. Project repository links all design and data modeling steps performed during SDLC. 6
7 Deliverables and Outcome Primary deliverable is an entityrelationship (E R) diagram or class diagram. As many as 4 E R or class diagrams are produced and analyzed: E R diagram that covers data needed in the project s application. E R diagram for the application being replaced. 7
8 Deliverables and Outcome E R diagram for the whole database from which the new application s data are extracted. E R diagram for the whole database from which data for the application system being replaced is drawn. 8
9 Deliverables and Outcome (cont.) Second deliverable is a set of entries about data objects to be stored in repository or project dictionary. Repository links data, process, and logic models of an information system. Data elements included in the DFD must appear in the data model and vice versa. Each data store in a process model must relate to business objects represented in the data model. 9
10 Gathering Information for Conceptual Data Modeling Two perspectives on data modeling: Top down approach for a data model is derived from an intimate understanding of the business. Bottom up approach for a data model is derived by reviewing specifications and business documents. 10
11 Gathering Information for Conceptual Data Modeling (Cont.) Requirements Determination Questions for Data Modeling: What are subjects/objects of the business? Data entities and descriptions. What unique characteristics distinguish between subjects/objects of the same type? Primary keys. 11
12 Gathering Information for Conceptual Data Modeling (Cont.) What characteristics describe each subject/object? Attributes and secondary keys. How do you use the data? Security controls and user access privileges. Over what period of time are you interested in the data? Cardinality and time dimensions. 12
13 Gathering Information for Conceptual Data Modeling (Cont.) Are all instances of each object the same? Supertypes, subtypes, and aggregations. What events occur that imply associations between objects? Relationships and cardinalities. Are there special circumstances that affect the way events are handled? Integrity rules, cardinalities, time dimensions. 13
14 Introduction to Entity Relationship (E R) Modeling Entity Relationship data model (E R model): a detailed, logical representation of the entities, associations and data elements for an organization or business area. Entity relationship diagram (E R diagram): a graphical representation of an E R model. 14
15 Introduction to Entity Relationship (E R) Modeling The E R model is expressed in terms of: Data entities in the business environment. Relationships or associations among those entities. Attributes or properties of both the entities and their relationships. 15
16 Introduction to E R Modeling (Cont.) Entity: a person, place, object, event or concept in the user environment about which data is to be maintained. Entity type: collection of entities that share common properties or characteristics. Entity instance: single occurrence of an entity type. 16
17 Naming and Defining Entity Types An entity type name should be: A singular noun; Descriptive and specific to the organization; Concise. Event entity type should be named for the result of the event, not the activity or process of the event. 17
18 Naming and Defining Entity Types (Cont.) An entity type definition should: Include a statement of what the unique characteristic(s) is (are) for each instance. Make clear what entity instances are included and not included in the entity type. Often include a description of when an instance of the entity type is created or deleted. 18
19 Naming and Defining Entity Types (Cont.) For some entity types the definition must specify: When an instance might change into an instance of another entity type. What history is to be kept about entity instances. 19
20 Attributes Attribute: a named property or characteristic of an entity that is of interest to the organization. Naming an attribute: i.e. Vehicle_ID. Place its name inside the rectangle for the associated entity in the E R diagram. 20
21 Naming and Defining Attributes An attribute name is a noun and should be unique. To make an attribute name unique and for clarity, each attribute name should follow a standard format. Similar attributes of different entity types should use similar but distinguishing names. 21
22 Naming and Defining Attributes (Cont.) An attribute definition: States what the attribute is and possibly why it is important. Should make it clear what is included and what is not included. Contain any aliases or alternative names. States the source of values for the attribute. 22
23 Naming and Defining Attributes (Cont.) An attribute definition should indicate: If a value for the attribute is required or optional. If a value for the attribute may change. Any relationships that attribute has with other attributes. 23
24 Candidate Keys and Identifiers. Candidate key: an attribute (or combination of attributes) that uniquely identifies each instance of an entity type. Identifier: a candidate key that has been selected as the unique, identifying characteristic for an entity type. 24
25 Candidate Keys and Identifiers (Cont.) Selection rules for an identifier Choose a candidate key that will not change its value. Choose a candidate key that will never be null. Avoid using intelligent keys. Consider substituting single value surrogate keys for large composite keys. 25
26 Other Attribute Types Multivalued attribute: an attribute that may take on more than one value for each entity instance. Repeating group: a set or two or more multivalued attributes that are logically related. 26
27 Other Attribute Types Required attribute: an attribute that must have a value for every entity instance. Optional attribute: an attribute that may not have a value for every entity instance. Composite attribute: an attribute that has meaningful component parts. Derived attribute: an attribute whose value can be computed from related attribute values. 27
28 Relationships Relationship: an association between the instances of one or more entity types that is of interest to the organization. Degree: the number of entity types that participate in a relationship. 28
29 Conceptual Data Modeling and the E R Model Unary relationship: a relationship between the instances of one entity type. Also called a recursive relationship. Binary relationship: a relationship between instances of two entity types. This is the most common type of relationship encountered in data modeling. 29
30 Conceptual Data Modeling and the E R Model (Cont.) Ternary relationship: a simultaneous relationship among instances of three entity types. 30
31 Cardinalities in Relationships Cardinality: the number of instances of entity B that can (or must) be associated with each instance of entity A. Minimum Cardinality The minimum number of instances of entity B that may be associated with each instance of entity A. 31
32 Cardinalities in Relationships (Cont.) Maximum Cardinality The maximum number of instances of entity B that may be associated with each instance of entity A. Mandatory vs. Optional Cardinalities Specifies whether an instance must exist or can be absent in the relationship. 32
33 Naming and Defining Relationships A relationship name is a verb phrase and avoid vague names. A relationship definition: Explains what action is to be taken and possibly why it is important. Gives examples to clarify the action. 33
34 Naming and Defining Relationships (Cont.) A relationship definition should: Explain any optional participation. Explain the reason for any explicit maximum cardinality other than many. Explain any restrictions on participation in the relationship. Explain the extent of history that is kept in the relationship. 34
35 Naming and Defining Relationships (Cont.) Explain the extent of history that is kept in the relationship. Explain whether an entity instance involved in a relationship instance can transfer participation to another relationship instance. 35
36 Associative Entities Associative Entity: an entity type that associates the instances of one or more entity types and contains attributes that are peculiar to the relationship between those entity instances. Sometimes called a gerund. The data modeler chooses to model the relationship as an entity type. 36
37 Summary of Conceptual Data Modeling with E R Diagrams The purpose of E R diagramming is to capture the richest possible understanding of the meaning of the data necessary for an information system or organization. 37
38 Representing Supertypes and Subtypes Subtype: a subgrouping of the entities in an entity type Is meaningful to the organization. Shares common attributes or relationships distinct from other subgroupings. Supertype: a generic entity type that has a relationship with one or more subtypes. 38
39 Representing Supertypes and Subtypes (Cont.) Business Rules for Supertype/subtype Relationships: Total specialization: specifies that each entity instance of the supertype must be a member of some subtype in the relationship. Partial specialization: specifies that an entity instance of the supertype does not have to belong to any subtype. may or may not be an instance of one of the subtypes. 39
40 Representing Supertypes and Subtypes (Cont.) Disjoint rule: specifies that if an entity instance of the supertype is a member of one subtype, it cannot simultaneously be a member of any other subtype. Overlap rule: specifies that an entity instance can simultaneously be a member of two (or more) subtypes. 40
41 Business Rules Business rules: specifications that preserve the integrity of the logical data model. Captured during requirements determination. Stored in CASE repository as they are documented. 41
42 Business Rules (Cont.) Four basic types of business rules are: Entity integrity: unique, non null identifiers. Referential integrity constraints: rules governing relationships between entity types. Domains: constraints on valid values for attributes. Triggering operations: other business rules that protect the validity of attribute values. 42
43 Domains Domain: the set of all data types and values that an attribute can assume. Several advantages Verify that the values for an attribute are valid. Ensure that various data manipulation operations are logical. Help conserve effort in describing attribute characteristics. 43
44 Triggering Operations Trigger: An assertion or rule that governs the validity of data manipulation operations such as insert, update and delete. Includes the following components: User rule: statement of the business rule to be enforced by the trigger. Event: data manipulation operation that initiates the operation. 44
45 Triggering Operations Entity Name: name of entity being accessed or modified. Condition: condition that causes the operation to be triggered. Action: action taken when the operation is triggered. 45
46 Role of Packaged Conceptual Data Models Database Patterns Packaged data models provide generic models that can be customized for a particular organization s business rules. Universal data models are templates for one or more core subjects areas such as: Customers, products, accounts, documents; and/or core business functions such as: Purchasing, accounting, receiving, etc. 46
47 Role of Packaged Conceptual Data Models Database Patterns (Cont.) Industry specific data models that are designed to be used by organizations within specific industries such as: Health care, banking, insurance, etc.; and nearly every major industry group. These models are based on the premise that data model patterns for organizations are similar within a particular industry. 47
48 Benefits of Database Patterns and Packaged Data Models Dramatically reduce implementation times and costs. Provides a starting point for asking requirements questions. Higher quality models. Represents best practice data modeling techniques and data model components whose quality often exceeds that which can be achieved by internal development teams, given typical organizational pressures. 48
49 Electronic Commerce Application: Conceptual Data Modeling Five general categories of information were identified for Pine Valley Furniture s WebStore. Next step was to define each item. The final step was to identify the interrelationships between the four entities. 49
50 Summary (Cont.) Distinguish between unary, binary, and ternary relationships and give an example of each. Define four basic types of business rules in a conceptual data model. Relate data modeling to process and logic modeling as different views of describing an information system. 50
Chapter 7 Data Modeling Using the Entity- Relationship (ER) Model
Chapter 7 Data Modeling Using the Entity- Relationship (ER) Model Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 7 Outline Using High-Level Conceptual Data Models for
DATABASE DESIGN. - Developing database and information systems is performed using a development lifecycle, which consists of a series of steps.
DATABASE DESIGN - The ability to design databases and associated applications is critical to the success of the modern enterprise. - Database design requires understanding both the operational and business
Unit 2.1. Data Analysis 1 - V2.0 1. Data Analysis 1. Dr Gordon Russell, Copyright @ Napier University
Data Analysis 1 Unit 2.1 Data Analysis 1 - V2.0 1 Entity Relationship Modelling Overview Database Analysis Life Cycle Components of an Entity Relationship Diagram What is a relationship? Entities, attributes,
THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E)
THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E) 2 LECTURE OUTLINE Using High-Level, Conceptual Data Models for Database Design Entity-Relationship (ER) model Popular high-level conceptual
IT2305 Database Systems I (Compulsory)
Database Systems I (Compulsory) INTRODUCTION This is one of the 4 modules designed for Semester 2 of Bachelor of Information Technology Degree program. CREDITS: 04 LEARNING OUTCOMES On completion of this
CSC 742 Database Management Systems
CSC 742 Database Management Systems Topic #4: Data Modeling Spring 2002 CSC 742: DBMS by Dr. Peng Ning 1 Phases of Database Design Requirement Collection/Analysis Functional Requirements Functional Analysis
Data Analysis 1. SET08104 Database Systems. Copyright @ Napier University
Data Analysis 1 SET08104 Database Systems Copyright @ Napier University Entity Relationship Modelling Overview Database Analysis Life Cycle Components of an Entity Relationship Diagram What is a relationship?
How To Write A Diagram
Data Model ing Essentials Third Edition Graeme C. Simsion and Graham C. Witt MORGAN KAUFMANN PUBLISHERS AN IMPRINT OF ELSEVIER AMSTERDAM BOSTON LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE
IT2304: Database Systems 1 (DBS 1)
: Database Systems 1 (DBS 1) (Compulsory) 1. OUTLINE OF SYLLABUS Topic Minimum number of hours Introduction to DBMS 07 Relational Data Model 03 Data manipulation using Relational Algebra 06 Data manipulation
2. Conceptual Modeling using the Entity-Relationship Model
ECS-165A WQ 11 15 Contents 2. Conceptual Modeling using the Entity-Relationship Model Basic concepts: entities and entity types, attributes and keys, relationships and relationship types Entity-Relationship
A brief overview of developing a conceptual data model as the first step in creating a relational database.
Data Modeling Windows Enterprise Support Database Services provides the following documentation about relational database design, the relational database model, and relational database software. Introduction
LECTURE 11: PROCESS MODELING
LECTURE 11: PROCESS MODELING Outline Logical modeling of processes Data Flow Diagram Elements Functional decomposition Data Flows Rules and Guidelines Structured Analysis with Use Cases Learning Objectives
7.1 The Information system
Chapter 7. Database Planning, Design and Administration Last few decades have seen proliferation of software applications, many requiring constant maintenance involving: correcting faults, implementing
Conceptual Design: Entity Relationship Models. Objectives. Overview
Conceptual Design: Entity Relationship Models Craig Van Slyke, University of Central Florida [email protected] John Day, Ohio University Objectives Define terms related to entity relationship modeling,
Database Design Methodology
Database Design Methodology Three phases Database Design Methodology Logical database Physical database Constructing a model of the information used in an enterprise on a specific data model but independent
Business Definitions for Data Management Professionals
Realising the value of your information TM Powered by Intraversed Business Definitions for Data Management Professionals Intralign User Guide Excerpt Copyright Intraversed Pty Ltd, 2010, 2014 W-DE-2015-0004
Lecture 12: Entity Relationship Modelling
Lecture 12: Entity Relationship Modelling The Entity-Relationship Model Entities Relationships Attributes Constraining the instances Cardinalities Identifiers Generalization 2004-5 Steve Easterbrook. This
Lesson 8: Introduction to Databases E-R Data Modeling
Lesson 8: Introduction to Databases E-R Data Modeling Contents Introduction to Databases Abstraction, Schemas, and Views Data Models Database Management System (DBMS) Components Entity Relationship Data
COMP 378 Database Systems Notes for Chapter 7 of Database System Concepts Database Design and the Entity-Relationship Model
COMP 378 Database Systems Notes for Chapter 7 of Database System Concepts Database Design and the Entity-Relationship Model The entity-relationship (E-R) model is a a data model in which information stored
1. Process Modeling. Process Modeling (Cont.) Content. Chapter 7 Structuring System Process Requirements
Content Chapter 7 Structuring System Process Requirements Understand the logical (&physical) process modeling by using data flow diagrams (DFDs) Draw DFDs & Leveling Balance higher-level and lower-level
Chapter 2: Entity-Relationship Model
Chapter 2: Entity-Relationship Model Entity Sets Relationship Sets Design Issues Mapping Constraints Keys E R Diagram Extended E-R Features Design of an E-R Database Schema Reduction of an E-R Schema to
XV. The Entity-Relationship Model
XV. The Entity-Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R Diagrams and Business Rules The
IV. The (Extended) Entity-Relationship Model
IV. The (Extended) Entity-Relationship Model The Extended Entity-Relationship (EER) Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of EER Diagrams
Database Design. Marta Jakubowska-Sobczak IT/ADC based on slides prepared by Paula Figueiredo, IT/DB
Marta Jakubowska-Sobczak IT/ADC based on slides prepared by Paula Figueiredo, IT/DB Outline Database concepts Conceptual Design Logical Design Communicating with the RDBMS 2 Some concepts Database: an
Chapter 2: Entity-Relationship Model. E-R R Diagrams
Chapter 2: Entity-Relationship Model What s the use of the E-R model? Entity Sets Relationship Sets Design Issues Mapping Constraints Keys E-R Diagram Extended E-R Features Design of an E-R Database Schema
Lecture Notes INFORMATION RESOURCES
Vilnius Gediminas Technical University Jelena Mamčenko Lecture Notes on INFORMATION RESOURCES Part I Introduction to Dta Modeling and MSAccess Code FMITB02004 Course title Information Resourses Course
Data Modeling Basics
Information Technology Standard Commonwealth of Pennsylvania Governor's Office of Administration/Office for Information Technology STD Number: STD-INF003B STD Title: Data Modeling Basics Issued by: Deputy
Database Design Process
Database Design Process Entity-Relationship Model From Chapter 5, Kroenke book Requirements analysis Conceptual design data model Logical design Schema refinement: Normalization Physical tuning Problem:
Chapter 2: Entity-Relationship Model. Entity Sets. " Example: specific person, company, event, plant
Chapter 2: Entity-Relationship Model! Entity Sets! Relationship Sets! Design Issues! Mapping Constraints! Keys! E-R Diagram! Extended E-R Features! Design of an E-R Database Schema! Reduction of an E-R
Database Design Process
Entity-Relationship Model Chapter 3, Part 1 Database Design Process Requirements analysis Conceptual design data model Logical design Schema refinement: Normalization Physical tuning 1 Problem: University
Chapter 8 The Enhanced Entity- Relationship (EER) Model
Chapter 8 The Enhanced Entity- Relationship (EER) Model Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 8 Outline Subclasses, Superclasses, and Inheritance Specialization
www.gr8ambitionz.com
Data Base Management Systems (DBMS) Study Material (Objective Type questions with Answers) Shared by Akhil Arora Powered by www. your A to Z competitive exam guide Database Objective type questions Q.1
BCA. Database Management System
BCA IV Sem Database Management System Multiple choice questions 1. A Database Management System (DBMS) is A. Collection of interrelated data B. Collection of programs to access data C. Collection of data
Concepts of Database Management Seventh Edition. Chapter 6 Database Design 2: Design Method
Concepts of Database Management Seventh Edition Chapter 6 Database Design 2: Design Method Objectives Discuss the general process and goals of database design Define user views and explain their function
Why & How: Business Data Modelling. It should be a requirement of the job that business analysts document process AND data requirements
Introduction It should be a requirement of the job that business analysts document process AND data requirements Process create, read, update and delete data they manipulate data. Process that aren t manipulating
Foundations of Information Management
Foundations of Information Management - WS 2012/13 - Juniorprofessor Alexander Markowetz Bonn Aachen International Center for Information Technology (B-IT) Data & Databases Data: Simple information Database:
Bridge from Entity Relationship modeling to creating SQL databases, tables, & relations
1 Topics for this week: 1. Good Design 2. Functional Dependencies 3. Normalization Readings for this week: 1. E&N, Ch. 10.1-10.6; 12.2 2. Quickstart, Ch. 3 3. Complete the tutorial at http://sqlcourse2.com/
Database Design Methodology
Topic 7 Database Design Methodology LEARNING OUTCOMES When you have completed this Topic you should be able to: 1. Discuss the purpose of a design methodology. 2. Explain three main phases of design methodology.
Data Modeling: Part 1. Entity Relationship (ER) Model
Data Modeling: Part 1 Entity Relationship (ER) Model MBA 8473 1 Cognitive Objectives (Module 2) 32. Explain the three-step process of data-driven information system (IS) development 33. Examine the purpose
Outline. Data Modeling. Conceptual Design. ER Model Basics: Entities. ER Model Basics: Relationships. Ternary Relationships. Yanlei Diao UMass Amherst
Outline Data Modeling Yanlei Diao UMass Amherst v Conceptual Design: ER Model v Relational Model v Logical Design: from ER to Relational Slides Courtesy of R. Ramakrishnan and J. Gehrke 1 2 Conceptual
1 Class Diagrams and Entity Relationship Diagrams (ERD)
1 Class Diagrams and Entity Relationship Diagrams (ERD) Class diagrams and ERDs both model the structure of a system. Class diagrams represent the dynamic aspects of a system: both the structural and behavioural
Database Design. Database Design I: The Entity-Relationship Model. Entity Type (con t) Chapter 4. Entity: an object that is involved in the enterprise
Database Design Database Design I: The Entity-Relationship Model Chapter 4 Goal: specification of database schema Methodology: Use E-R R model to get a high-level graphical view of essential components
LAB 3: Introduction to Domain Modeling and Class Diagram
LAB 3: Introduction to Domain Modeling and Class Diagram OBJECTIVES Use the UML notation to represent classes and their properties. Perform domain analysis to develop domain class models. Model the structural
DATABASE MANAGEMENT SYSTEMS. Question Bank:
DATABASE MANAGEMENT SYSTEMS Question Bank: UNIT 1 1. Define Database? 2. What is a DBMS? 3. What is the need for database systems? 4. Define tupule? 5. What are the responsibilities of DBA? 6. Define schema?
LOGICAL DATABASE DESIGN
MODULE 8 LOGICAL DATABASE DESIGN OBJECTIVE QUESTIONS There are 4 alternative answers to each question. One of them is correct. Pick the correct answer. Do not guess. A key is given at the end of the module
Database Design Overview. Conceptual Design ER Model. Entities and Entity Sets. Entity Set Representation. Keys
Database Design Overview Conceptual Design. The Entity-Relationship (ER) Model CS430/630 Lecture 12 Conceptual design The Entity-Relationship (ER) Model, UML High-level, close to human thinking Semantic
MODULE 8 LOGICAL DATABASE DESIGN. Contents. 2. LEARNING UNIT 1 Entity-relationship(E-R) modelling of data elements of an application.
MODULE 8 LOGICAL DATABASE DESIGN Contents 1. MOTIVATION AND LEARNING GOALS 2. LEARNING UNIT 1 Entity-relationship(E-R) modelling of data elements of an application. 3. LEARNING UNIT 2 Organization of data
Databases and BigData
Eduardo Cunha de Almeida [email protected] Outline of the course Introduction Database Systems (E. Almeida) Distributed Hash Tables and P2P (C. Cassagnes) NewSQL (D. Kim and J. Meira) NoSQL (D. Kim)
Data Modeling Master Class Steve Hoberman s Best Practices Approach to Developing a Competency in Data Modeling
Steve Hoberman s Best Practices Approach to Developing a Competency in Data Modeling The Master Class is a complete data modeling course, containing three days of practical techniques for producing conceptual,
Collated Food Requirements. Received orders. Resolved orders. 4 Check for discrepancies * Unmatched orders
Introduction to Data Flow Diagrams What are Data Flow Diagrams? Data Flow Diagrams (DFDs) model that perspective of the system that is most readily understood by users the flow of information around the
not necessarily strictly sequential feedback loops exist, i.e. may need to revisit earlier stages during a later stage
Database Design Process there are six stages in the design of a database: 1. requirement analysis 2. conceptual database design 3. choice of the DBMS 4. data model mapping 5. physical design 6. implementation
Database Management Systems
Database Management Systems Database Design (1) 1 Topics Information Systems Life Cycle Data Base Design Logical Design Physical Design Entity Relationship (ER) Model Entity Relationship Attributes Cardinality
s от Systems Analysis and Design
s от Systems Analysis and Design lourih EDITION Joseph S. Valacich Washington State University Joey F. George Florida State University Jeffrey A. Hoffer University of Dayton Pearson Education International
three Entity-Relationship Modeling chapter OVERVIEW CHAPTER
three Entity-Relationship Modeling CHAPTER chapter OVERVIEW 3.1 Introduction 3.2 The Entity-Relationship Model 3.3 Entity 3.4 Attributes 3.5 Relationships 3.6 Degree of a Relationship 3.7 Cardinality of
æ A collection of interrelated and persistent data èusually referred to as the database èdbèè.
CMPT-354-Han-95.3 Lecture Notes September 10, 1995 Chapter 1 Introduction 1.0 Database Management Systems 1. A database management system èdbmsè, or simply a database system èdbsè, consists of æ A collection
Chapter 6. Data-Flow Diagrams
Chapter 6. Data-Flow Diagrams Table of Contents Objectives... 1 Introduction to data-flow diagrams... 2 What are data-flow diagrams?... 2 An example data-flow diagram... 2 The benefits of data-flow diagrams...
Foundations of Information Management
Foundations of Information Management - WS 2009/10 Juniorprofessor Alexander Markowetz Bonn Aachen International Center for Information Technology (B-IT) Alexander Markowetz Born 1976 in Brussels, Belgium
6-1. Process Modeling
6-1 Process Modeling Key Definitions Process model A formal way of representing how a business system operates Illustrates the activities that are performed and how data moves among them Data flow diagramming
Entity-Relationship Model
UNIT -2 Entity-Relationship Model Introduction to ER Model ER model is represents real world situations using concepts, which are commonly used by people. It allows defining a representation of the real
Entity - Relationship Modelling
Topic 5 Entity - Relationship Modelling LEARNING OUTCOMES When you have completed this Topic you should be able to: 1. Acquire the basic concepts of the Entity-Relationship (ER) model. 2. Discuss how to
Database Management. Technology Briefing. Modern organizations are said to be drowning in data but starving for information p.
Technology Briefing Database Management Modern organizations are said to be drowning in data but starving for information p. 509 TB3-1 Learning Objectives TB3-2 Learning Objectives TB3-3 Database Management
Data Dictionary and Normalization
Data Dictionary and Normalization Priya Janakiraman About Technowave, Inc. Technowave is a strategic and technical consulting group focused on bringing processes and technology into line with organizational
Fundamentals of Database Design
Fundamentals of Database Design Zornitsa Zaharieva CERN Data Management Section - Controls Group Accelerators and Beams Department /AB-CO-DM/ 23-FEB-2005 Contents : Introduction to Databases : Main Database
Designing a Database Schema
Week 10: Database Design Database Design From an ER Schema to a Relational One Restructuring an ER schema Performance Analysis Analysis of Redundancies, Removing Generalizations Translation into a Relational
Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database.
Physical Design Physical Database Design (Defined): Process of producing a description of the implementation of the database on secondary storage; it describes the base relations, file organizations, and
Demystified CONTENTS Acknowledgments xvii Introduction xix CHAPTER 1 Database Fundamentals CHAPTER 2 Exploring Relational Database Components
Acknowledgments xvii Introduction xix CHAPTER 1 Database Fundamentals 1 Properties of a Database 1 The Database Management System (DBMS) 2 Layers of Data Abstraction 3 Physical Data Independence 5 Logical
AS LEVEL Computer Application Databases
AS LEVEL Computer Application Databases YLLSS In the syllabus, we have Applications of databases in society Students should be aware of the uses and applications of databases in everyday life (e.g. the
CHAPTER 6 DATABASE MANAGEMENT SYSTEMS. Learning Objectives
CHAPTER 6 DATABASE MANAGEMENT SYSTEMS Management Information Systems, 10 th edition, By Raymond McLeod, Jr. and George P. Schell 2007, Prentice Hall, Inc. 1 Learning Objectives Understand the hierarchy
Data Management Operating Procedures and Guidelines
DEPARTMENT OF HEALTH & HUMAN SERVICES Centers for Medicare & Medicaid Services 7500 Security Boulevard, Mail Stop N2-14-26 Baltimore, Maryland 21244-1850 Data Administration Data Management Operating Procedures
Database Design and Database Programming with SQL - 5 Day In Class Event Day 1 Activity Start Time Length
Database Design and Database Programming with SQL - 5 Day In Class Event Day 1 Welcome & Introductions 9:00 AM 20 Lecture 9:20 AM 40 Practice 10:00 AM 20 Lecture 10:20 AM 40 Practice 11:15 AM 30 Lecture
Files. Files. Files. Files. Files. File Organisation. What s it all about? What s in a file?
Files What s it all about? Information being stored about anything important to the business/individual keeping the files. The simple concepts used in the operation of manual files are often a good guide
Transaction-Typed Points TTPoints
Transaction-Typed Points TTPoints version: 1.0 Technical Report RA-8/2011 Mirosław Ochodek Institute of Computing Science Poznan University of Technology Project operated within the Foundation for Polish
Reverse Engineering of Relational Databases to Ontologies: An Approach Based on an Analysis of HTML Forms
Reverse Engineering of Relational Databases to Ontologies: An Approach Based on an Analysis of HTML Forms Irina Astrova 1, Bela Stantic 2 1 Tallinn University of Technology, Ehitajate tee 5, 19086 Tallinn,
Chapter 15 Basics of Functional Dependencies and Normalization for Relational Databases
Chapter 15 Basics of Functional Dependencies and Normalization for Relational Databases Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 15 Outline Informal Design Guidelines
Basic Concepts of Database Systems
CS2501 Topic 1: Basic Concepts 1.1 Basic Concepts of Database Systems Example Uses of Database Systems - account maintenance & access in banking - lending library systems - airline reservation systems
Introduction to Computing. Lectured by: Dr. Pham Tran Vu [email protected]
Introduction to Computing Lectured by: Dr. Pham Tran Vu [email protected] Databases The Hierarchy of Data Keys and Attributes The Traditional Approach To Data Management Database A collection of
B.Sc (Computer Science) Database Management Systems UNIT-V
1 B.Sc (Computer Science) Database Management Systems UNIT-V Business Intelligence? Business intelligence is a term used to describe a comprehensive cohesive and integrated set of tools and process used
We know how to query a database using SQL. A set of tables and their schemas are given Data are properly loaded
E-R Diagram Database Development We know how to query a database using SQL A set of tables and their schemas are given Data are properly loaded But, how can we develop appropriate tables and their schema
The Entity-Relationship Model
The Entity-Relationship Model 221 After completing this chapter, you should be able to explain the three phases of database design, Why are multiple phases useful? evaluate the significance of the Entity-Relationship
Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification
Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Outline More Complex SQL Retrieval Queries
Database Design. Adrienne Watt. Port Moody
Database Design Database Design Adrienne Watt Port Moody Except for third party materials and otherwise stated, content on this site is made available under a Creative Commons Attribution 2.5 Canada License.
A Technique for Teaching Difficult Concepts in an Undergraduate Business Database Management Systems Course
Twelfth LACCEI Latin American and Caribbean Conference for Engineering and Technology (LACCEI 2014) Excellence in Engineering To Enhance a Country s Productivity July 22-24, 2014 Guayaquil, Ecuador. A
Effecting Data Quality Improvement through Data Virtualization
Effecting Data Quality Improvement through Data Virtualization Prepared for Composite Software by: David Loshin Knowledge Integrity, Inc. June, 2010 2010 Knowledge Integrity, Inc. Page 1 Introduction The
Entity/Relationship Modelling. Database Systems Lecture 4 Natasha Alechina
Entity/Relationship Modelling Database Systems Lecture 4 Natasha Alechina In This Lecture Entity/Relationship models Entities and Attributes Relationships Attributes E/R Diagrams For more information Connolly
Lecture 6. SQL, Logical DB Design
Lecture 6 SQL, Logical DB Design Relational Query Languages A major strength of the relational model: supports simple, powerful querying of data. Queries can be written intuitively, and the DBMS is responsible
Chapter 6: Physical Database Design and Performance. Database Development Process. Physical Design Process. Physical Database Design
Chapter 6: Physical Database Design and Performance Modern Database Management 6 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden Robert C. Nickerson ISYS 464 Spring 2003 Topic 23 Database
Database Design Methodologies
Critical Success Factors in Database Design Database Design Methodologies o Work interactively with the users as much as possible. o Follow a structured methodology throughout the data modeling process.
5.5 Copyright 2011 Pearson Education, Inc. publishing as Prentice Hall. Figure 5-2
Class Announcements TIM 50 - Business Information Systems Lecture 15 Database Assignment 2 posted Due Tuesday 5/26 UC Santa Cruz May 19, 2015 Database: Collection of related files containing records on
Chapter 1 Databases and Database Users
Chapter 1 Databases and Database Users Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1 Outline Introduction An Example Characteristics of the Database Approach Actors
Databases Model the Real World. The Entity- Relationship Model. Conceptual Design. Steps in Database Design. ER Model Basics. ER Model Basics (Contd.
The Entity- Relationship Model R &G - Chapter 2 A relationship, I think, is like a shark, you know? It has to constantly move forward or it dies. And I think what we got on our hands is a dead shark. Woody
The Entity-Relationship Model
The Entity-Relationship Model Chapter 2 Slides modified by Rasmus Pagh for Database Systems, Fall 2006 IT University of Copenhagen Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Today
The Relational Model. Ramakrishnan&Gehrke, Chapter 3 CS4320 1
The Relational Model Ramakrishnan&Gehrke, Chapter 3 CS4320 1 Why Study the Relational Model? Most widely used model. Vendors: IBM, Informix, Microsoft, Oracle, Sybase, etc. Legacy systems in older models
Oracle 10g PL/SQL Training
Oracle 10g PL/SQL Training Course Number: ORCL PS01 Length: 3 Day(s) Certification Exam This course will help you prepare for the following exams: 1Z0 042 1Z0 043 Course Overview PL/SQL is Oracle's Procedural
Conceptual Design Using the Entity-Relationship (ER) Model
Conceptual Design Using the Entity-Relationship (ER) Model Module 5, Lectures 1 and 2 Database Management Systems, R. Ramakrishnan 1 Overview of Database Design Conceptual design: (ER Model is used at
The Entity-Relationship Model
The Entity-Relationship Model Overview of Database Design Requirements analysis Conceptual design data model Logical design Schema refinement: Normalization Physical tuning Conceptual Design Entities Conceptual
SELF STUDY DIPLOMA IN BUSINESS ANALYSIS
What? How? Business Process Education Centre CC PostNet Suite 60, Private Bag X1 Northcliff, 2115, South Africa Tel (011) 478 0430 Fax (011) 478 0435 www.whathow.co.za SELF STUDY DIPLOMA IN BUSINESS ANALYSIS
2. Basic Relational Data Model
2. Basic Relational Data Model 2.1 Introduction Basic concepts of information models, their realisation in databases comprising data objects and object relationships, and their management by DBMS s that
Design and Implementation
Pro SQL Server 2012 Relational Database Design and Implementation Louis Davidson with Jessica M. Moss Apress- Contents Foreword About the Author About the Technical Reviewer Acknowledgments Introduction
