Data Model Basic Building Blocks

Slides:



Advertisements
Similar presentations
BUSINESS DRIVEN TECHNOLOGY Plug-In T4 Designing Database Applications.
Advertisements

Database Systems: Design, Implementation, and Management Tenth Edition
Data Design The futureERD - CardinalityCODINGRelationshipsDefinition.
Concepts of Database Management Sixth Edition
SLIDE 1IS Fall 2002 Database Management: Discussion Session University of California, Berkeley School of Information Management and.
Database Design Chapter 2. Goal of all Information Systems  To add value –Reduce costs –Increase sales or revenue –Provide a competitive advantage.
Chapter 3: Data Modeling
C Computer-Based Systems for Management Support Kevin Brabazon D atabases : Fundamentals.
Database Design Concepts Info1408
Mrs. Maninder Kaur 1Maninder Kaur
Data Modeling 1 Yong Choi School of Business CSUB.
Entity-Relationship Design
LECTURE 2 DATABASE SYSTEM CONCEPTS AND ARCHITECTURE.
Chapter 6 The Relational Database Model: Additional Concepts
ระบบฐานข้อมูลขั้นสูง (Advanced Database Systems) Lecturer AJ. Suwan Janin Phone:
Concepts of Database Management Seventh Edition
DATABASE. A database is collection of information that is organized so that it can easily be accessed, managed and updated. It is also the collection.
Database Technical Session By: Prof. Adarsh Patel.
Database Systems: Design, Implementation, and Management Ninth Edition
CSC 240 (Blum)1 Introduction to Database. CSC 240 (Blum)2 Data versus Information When people distinguish between data and information, –Data is simply.
Chapter 2 Data Models Database Systems: Design, Implementation, and Management, Rob and Coronel Adapted for INFS-3200.
Copyright 2008 McGraw-Hill Ryerson 1 TECHNOLOGY PLUG-IN T5 DESIGNING DATABASE APPLICATIONS.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Plug-In T5: Designing Database Applications Business Driven Technology.
Organizing Data Revision: pages 8-10, 31 Chapter 3.
Storing Organizational Information - Databases
1 Relational Databases and SQL. Learning Objectives Understand techniques to model complex accounting phenomena in an E-R diagram Develop E-R diagrams.
CS 1308 Computer Literacy and the Internet
System Design System Design - Mr. Ahmad Al-Ghoul System Analysis and Design.
Database Design. The process of developing database structures from user requirements for data a structured methodology Structured Methodology - a number.
Order Database – ER Diagram Prepared by Megan Foster Fall Semester 2014.
Concepts of Database Management Seventh Edition Chapter 1 Introduction to Database Management.
Information Access Mgt09/12/971 Entity-Relationship Design Information Level Design.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
INTRODUCTION TO DATA MODELING CS 260 Database Systems.
Understand Primary, Foreign, and Composite Keys Database Administration Fundamentals LESSON 4.2.
Tutorial 2 Data Modelling. 3 Terminology & Notation(1) An entity is an object about which the system needs to hold information –Customer, Student, Course.
EntityRelationshipDiagrams. Entity Relationship Models The E-R (entity-relationship) data model views the real world as a set of basic objects (entities)
2 1 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Data Models Why data models are important About the basic data-modeling.
Logical Database Design and Relation Data Model Muhammad Nasir
DATA SCIENCE MIS0855 | Spring 2016 Designing Data
COP Introduction to Database Structures
Database Systems: Design, Implementation, and Management Tenth Edition
Database Design.
Entity-Relationship Model
Entity Relationship Model
Business System Development
Databases We are particularly interested in relational databases
IS 130 Information systems 1
Databases Chapter 16.
Database Systems Chapter 3 1.
© 2014 by McGraw-Hill Education. This is proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
DESIGNING DATABASE APPLICATIONS
CS311 Database Management system
Enhanced ER Modeling Transparencies
Chapter 12 Information Systems.
Database Management system
Entity-Relationship Model and Diagrams (continued)
Order Database – ER Diagram
Normalization Referential Integrity
Entity Relationship Diagrams
Four Levels of Data from Ricardo’s Database Illuminated
IST 318 Database Administration
Entities Things about which you need to store data. One entity for each different thing. At least two attributes At least two occurrences Not a property.
ACCOUNTING INFORMATION SYSTEMS
Database Design and Development
Entity-Relationship Diagram (ERD)
Entity-Relationship Design
Database Design Chapter 7.
Presentation transcript:

Data Model Basic Building Blocks

Basic Building Blocks of Data Entity Is anything (a person, a place, a thing, or an event) Represents a particular type of object in the real world. Example. A CUSTOMER entity would have many distinguishable customer occurrences, such John Smith, Pedro Dinamita, Etc.

Attribute Is a characteristic of an entity. Are the equivalent of fields in file systems. Example. A CUSTOMER entity would be described by attributes such as customer last name, first name, phone, address, and credit limit.

Relationship Describes an association among entities. Example. A relationship exist between customers and agents that can be described as follows: An agent can serve many customers, and each customer may be served by one agent.

Three types of Relationship One-to-many Many-to-many One-to-one

Constraint Is a restriction place on data. Constraint are important because they help to ensure data integrity. Constraint are normally expressed in the form of rules.