5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.

Slides:



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

McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module C Designing Databases and Entity-Relationship.
Lecture-7/ T. Nouf Almujally
Modeling the Data: Conceptual and Logical Data Modeling
Chapter 14 Getting to First Base: Introduction to Database Concepts.
The Relational Database Model:
3-1 Chapter 3 Data and Knowledge Management
Extended Learning Module C Designing Databases and Entity-Relationship Diagramming McGraw-Hill/Irwin Copyright © 2010 by the McGraw-Hill Companies, Inc.
Chapter 5 Database Concepts.
McGraw-Hill/Irwin Copyright © 2008, The McGraw-Hill Companies, Inc. All rights reserved.McGraw-Hill/Irwin Copyright © 2008 The McGraw-Hill Companies, Inc.
Information Technology in Organizations
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
McGraw-Hill/Irwin Copyright © 2008, The McGraw-Hill Companies, Inc. All rights reserved.McGraw-Hill/Irwin Copyright © 2008 The McGraw-Hill Companies, Inc.
APPENDIX C DESIGNING DATABASES
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 Data Resource Management.
Chapter 5 Database Processing.
COMPUTING FOR BUSINESS AND ECONOMICS-III. Lecture no.6 COURSE INSTRUCTOR- Ms. Tehseen SEMESTER- Summer 2010.
Database Design Concepts
4-1 BUSI 240 Introduction to Information Systems Tuesday & Thursday 8:05am – 9:30am Wyant Lecture Hall Please sign the roster on the back table.
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
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:
Data Resource Management Chapter 5 Copyright © 2010 by the McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin.
McGraw-Hill/Irwin ©2008,The McGraw-Hill Companies, All Rights Reserved Chapter 5 Data Resource Management.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 4 Database Processing Copyright © 2013 Pearson Education, Inc. Publishing as Prentice Hall 4-1.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 Data Resource Management.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Introduction to Information Systems Lecture 05 Data Resource Management Data Concepts Database Management Types of Databases.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
Chapter 5 Data Resource Management. 2 I. Why do organizations store data?  Data resources must be structured and organized in some logical manner so.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
DATABASE MANAGEMENT SYSTEMS CMAM301. Introduction to database management systems  What is Database?  What is Database Systems?  Types of Database.
Database Fundamentals CSC105 Furman University Peggy Batchelor.
Relational Theory and Design
CISB113 Fundamentals of Information Systems Data Management.
McGraw-Hill/Irwin ©2009 The McGraw-Hill Companies, All Rights Reserved CHAPTER 6 DATABASES AND DATA WAREHOUSES CHAPTER 6 DATABASES AND DATA WAREHOUSES.
Foundations of Business Intelligence: Databases and Information Management.
Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
Principles of Database Design, Part I AIMS 2710 R. Nakatsu.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Entity Relationship Diagram (ERD). Objectives Define terms related to entity relationship modeling, including entity, entity instance, attribute, relationship.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
McGraw-Hill/Irwin Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 6 Modeling the Data: Conceptual and Logical Data Modeling.
McGraw-Hill/Irwin © 2003 The McGraw-Hill Companies, Inc., All Rights Reserved. Example 1-Ad A.
Data Resource Management Lecture 8. Traditional File Processing Data are organized, stored, and processed in independent files of data records In traditional.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
McGraw-Hill/Irwin ©2008,The McGraw-Hill Companies, All Rights Reserved Chapter 5 Data Resource Management.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Data Resource Management
IS 130 Information systems 1
Database Systems Chapter 3 1.
Fundamentals of Information Systems, Sixth Edition
Fundamentals & Ethics of Information Systems IS 201
McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 12 Information Systems.
Data Resource Management
Database Management  .
Data Resource Management
Databases and Information Management
ERD’s REVIEW DBS201.
Chapter 5 Data Resource Management.
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Databases and Information Management
Database Design Hacettepe University
Getting Started Chapter One DATABASE CONCEPTS, 5th Edition
Databases and Information Management
Information system analysis and design
Presentation transcript:

5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.

5-2 Fundamental Data Concepts Character: single alphabetic, numeric or other symbol Field or data item: a grouping of related characters Represents an attribute (a characteristic or quality) of some entity (object, person, place or event) Example: salary Record: grouping of all the fields used to describe the attributes of an entity Example: payroll record with name, SSN and rate of pay

5-3 Fundamental Data Concepts File or table: a group of related records Database: an integrated collection of logically related data elements

5-4 Data Planning Process Enterprise Model Defines basic business process of the enterprise Defined by DBAs and designers with end users Data Modeling Relationships between data elements Entity Relationship Diagram (ERD) common tool for modeling

5-5 Entity Relationship Diagram

5-6 ERD Symbols Entity Relationship Attribute

5-7 James Bond Database Agents Appear in Films Agent Number Name Film Number Film Agent Number

5-8 SQL SELECT is used to retrieve zero or more rows from one or more tables in a database FROM is used to indicate from which tables the data is to be taken, as well as how the tables JOIN to each other.

5-9 SQL WHERE is used to identify which rows to be retrieved GROUP BY is used to combine rows with related values into elements of a smaller set of rows. ORDER BY is used to identify which columns are used to sort the resulting data.

Texas Tech enrolls students in courses that are taught by professors. Tech tracks students by first name, last name, eRaider username, and SSN. Courses have a course ID, a department, a course number, and a section number. Professors have a first name, last name, eRaider username, rank, and SSN. 5-10

5-11 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.