System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-1 CHAPTER OVERVIEW  Entity Relationship Diagram  Data Model And Its Main Components.

Slides:



Advertisements
Similar presentations
Basic SQL Introduction Presented by: Madhuri Bhogadi.
Advertisements

Database Systems: Design, Implementation, and Management Tenth Edition
Managing Data Resources
Database Design (Data Modeling) DCO11310 Database Systems and Design By Rose Chang.
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design Copyright 2000 © John Wiley & Sons, Inc. All rights reserved. Slide 1 Data.
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design Copyright 2000 © John Wiley & Sons, Inc. All rights reserved. Slide 1 Process.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Mrs. Maninder Kaur 1Maninder Kaur
6 Systems Analysis and Design in a Changing World, Fourth Edition.
Chapter 6: The Traditional Approach to Requirements
2 Approaches to Requierements Engineering Reference: Systems Analysis and Design in a Changing World, 3 rd Edition, chapter 2 and chapter 6.
Chapter 5 Database Processing.
CS370 Spring 2007 CS 370 Database Systems Lecture 2 Overview of Database Systems.
Section 11 : Normalisation
Presentation Handout EDBA – Module 8 Information Technology 21 st December 2014 By K.M.Prashanthan.
Database System Concepts and Architecture
Database Organization and Design
CHAPTER EIGHT Accessing Data Processing Databases.
PLUG IT IN 3 Fundamentals of Relational Database Operations.
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Database Design Using Entity-Relationship Models Transformation of Entity-Relationship Models into Relational Database Design Trees, Networks, and Bills.
Lecture2: Database Environment Prepared by L. Nouf Almujally & Aisha AlArfaj 1 Ref. Chapter2 College of Computer and Information Sciences - Information.
1 ISA&D7‏/8‏/ ISA&D7‏/8‏/2013 Methodologies of the SDLC Traditional Approach to SDLC Object-Oriented Approach to SDLC CASE Tools.
Lecture2: Database Environment Prepared by L. Nouf Almujally 1 Ref. Chapter2 Lecture2.
Database Systems: Design, Implementation, and Management Tenth Edition Chapter 4 Entity Relationship (ER) Modeling.
Chapter 5 Data Resource Management. 2 I. Why do organizations store data?  Data resources must be structured and organized in some logical manner so.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 2- 1.
Description and exemplification of entity-relationship modelling.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 2 Database System Concepts and Architecture.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Done By : Gillian Swaby. Objectives: 1. What is an Entity-Relationship Diagram? 2.What are the symbols used in ERD? Explain each. 3. What is a one- to-
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
CSE 441: Systems Analysis & Design Basic CASE Models of Visible Analyst Lab2 Yusuf Altunel.
Hoi Le. Why database? Spreadsheet is not good to: Store very large information Efficiently update data Use in multi-user mode Hoi Le2.
Managing Data Resources File Organization and databases for business information systems.
CS-508 Databases and Data Mining By Dr. Noman Hasany.
CIS 336 AID Your Dreams Our Mission/cis336aid.com
Systems Analysis and Design in a Changing World, Fourth Edition
Databases – Exam questions
SEEM3430: Information Systems Analysis and Design
CIS 336 Slingshot Academy / cis336study.com
Data Resource Management
Process Modelling Chapter 6.
Data Modelling Chapter 7
Smart Draw v2010 آزمایشگاه مهندسی نرم افزار
CIS 336 str Competitive Success/snaptutorial.com
CIS 336 Competitive Success/snaptutorial.com
CIS 336 PAPERS Education Your Life-- cis336papers.com.
CIS 336 PAPERS Lessons in Excellence-- cis336papers.com.
CIS 336 str Education for Service- -snaptutorial.com.
CIS 336 Education for Service-- snaptutorial.com.
CIS 336 STUDY Lessons in Excellence-- cis336study.com.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 2 Database System Concepts and Architecture.
CIS 336 Teaching Effectively-- snaptutorial.com
CIS 336 str Teaching Effectively-- snaptutorial.com.
CIS 336 PAPERS Education for Service-- cis336papers.com.
CIS336 Education for Service-- cis336.com. CIS 336 Final Exam (Feb 2016) For more course tutorials visit CIS 336 Final Exam Question 1.
Databases and Information Management
Chapter 2 Database Environment Pearson Education © 2009.
تحلیل سیستم‌ها مدل‌سازی پردازشی.
Basic Concepts in Data Management
MANAGING DATA RESOURCES
Data Base System Lecture 2: Introduction to Database
Database.
Databases.
Databases and Information Management
Databases and Information Management
Chapter 2 Database Environment Pearson Education © 2009.
Presentation transcript:

System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-1 CHAPTER OVERVIEW  Entity Relationship Diagram  Data Model And Its Main Components  Relationship Model  Normalization  SQL Statements Practicals

System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-2 ENTITY RELATIONSHIP DIAGRAM ERD is network model that describes stored data of a system at a high level of abstraction. For system analyst, ERD has a major benefit: it highlights the relationship between data stores on DFD which would otherwise only be seen in the specification process.

System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-3 DATA MODEL AND ITS MAIN COMPONENTS A data model is a "description" of both a container for data and a methodology for storing and retrieving data from that container. Two steps to develop a data model: Defining Entity Types Defining Relationships

System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-4 RELATIONSHIP MODEL Relationship model defines a list of all the attributes to every table of entity of the data model. It is used a data modeling process sin order to test, improve and expand the constructed data model.

System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-5 NORMALISATION Normalisation is a process by which you identify and correct inherent problems and complexities in your record designs. The three types of normal forms comprise of:  First normal form  Second normal form  Third normal form. These three normal forms constitute a progression.

System Analysis and Design Copyright © Genetic Computer School 2007 SAD9-6 SQL STATEMENT PRACTICALS  SELECT statements  INSERT statements  SQL Functions  SQL Joins  SQL Aliases  SQL DDL Statements