Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.

Slides:



Advertisements
Similar presentations
Chapter Information Systems Database Management.
Advertisements

Chapter Information Systems Database Management.
Data Modeling and Database Design Chapter 1: Database Systems: Architecture and Components.
The database approach to data management provides significant advantages over the traditional file-based approach Define general data management concepts.
PowerPoint Presentation by Charlie Cook Copyright © 2004 South-Western. All rights reserved. Chapter 3 Database Management Systems Database Management.
Chapter 12 Information Systems Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Chapter Information Systems Database Management.
Oct 31, 2000Database Management -- Fall R. Larson Database Management: Introduction to Terms and Concepts University of California, Berkeley School.
The Hierarchy of Data Bit (a binary digit): a circuit that is either on or off Byte: 8 bits Character: each byte represents a character; the basic building.
Fundamentals of Information Systems, Second Edition 1 Organizing Data and Information Chapter 3.
Organizing Data Chapter 5. Data Hierachy Table = Entities X Attributes Entities = Records Attributes = Fields.
Mgt 20600: IT Management & Applications Databases
Chapter 12 Information Systems Nell Dale John Lewis.
CHAPTER 3 DATABASES AND DATA WAREHOUSES. 3-2 STUDENT LEARNING OUTCOMES 1.Describe business intelligence and its role 2.Compare databases and data warehouses.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Chapter 12 Information Systems. 2 Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Database Management COP4540, SCS, FIU An Introduction to database system.
Chapter One Overview of Database Objectives: -Introduction -DBMS architecture -Definitions -Data models -DB lifecycle.
Chapter 12 Information Systems. Spreadsheets Databases 12-2.
Chapter 12 Information Systems. 2 Managing Information Information system Software that helps the user organize and analyze data Electronic spreadsheets.
Chapter 12 Information Systems. 2 Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Databases and Data Warehouses How Do You Organize Large Amounts of Information? Chapter 10.
Chapter 5 Database Processing.
Data Modeling with ER Diagrams What is an Entity-Relationship Model? How is an E-R model represented as an E-R diagram? How can a video store be modeled.
Fundamentals of Information Systems, Third Edition2 Principles and Learning Objectives The database approach to data management provides significant advantages.
Information storage: Introduction of database 10/7/2004 Xiangming Mu.
Chapter 5 Lecture 2. Principles of Information Systems2 Objectives Understand Data definition language (DDL) and data dictionary Learn about popular DBMSs.
CPS120: Introduction to Computer Science Information Systems: Database Management Nell Dale John Lewis.
CS370 Spring 2007 CS 370 Database Systems Lecture 2 Overview of Database Systems.
 Introduction Introduction  Purpose of Database SystemsPurpose of Database Systems  Levels of Abstraction Levels of Abstraction  Instances and Schemas.
Web-Enabled Decision Support Systems
Fundamentals of Information Systems, Fifth Edition
Introduction to Accounting Information Systems
1 Chapter 1 Overview of Database Concepts. 2 Chapter Objectives Identify the purpose of a database management system (DBMS) Distinguish a field from a.
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:
Chapter 12 Information Systems. 2 Managing Information Information system Software that helps the user organize and analyze data Electronic spreadsheets.
Chapter 12 Information Systems. 2 Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Chapter 1 : Introduction §Purpose of Database Systems §View of Data §Data Models §Data Definition Language §Data Manipulation Language §Transaction Management.
Lecturer: Gareth Jones. How does a relational database organise data? What are the principles of a database management system? What are the principal.
Database A database is a collection of data organized to meet users’ needs. In this section: Database Structure Database Tools Industrial Databases Concepts.
1 Chapter 1 Introduction. 2 Introduction n Definition A database management system (DBMS) is a general-purpose software system that facilitates the process.
Introduction to Computers Lesson 10B. home Database A collection of related data or facts.
Introduction to Computers Lesson 10B. home Database A collection of related data or facts.
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.
Chapter 1Introduction to Oracle9i: SQL1 Chapter 1 Overview of Database Concepts.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 Data Resource Management.
CS 1308 Computer Literacy and the Internet
CSC Intro. to Computing Lecture 10: Databases.
Organizing Data and Information
Database Management System. DBMS A software package that allows users to create, retrieve and modify databases. A database is a collection of related.
BSA206 Database Management Systems Lecture 2: Introduction to Oracle / Overview of Database Concepts.
Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
Copyright (c) 2014 Pearson Education, Inc. Introduction to DBMS.
Class Diagrams. Terms and Concepts A class diagram is a diagram that shows a set of classes, interfaces, and collaborations and their relationships.
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
MBI 630: Week 9 Conceptual Data Modeling and Designing Database 6/10/2016.
IFS310: Module 10 Database Design - Physical design of files and databases.
Chapter 12 Information Systems.
Information Systems Database Management
Database Management  .
RELATIONAL DATABASE MODEL
Databases and Information Management
Week 11: Database Management System
Data Model.
Databases and Information Management
DATABASES WHAT IS A DATABASE?
Presentation transcript:

Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the organization of a relational database Establishing relationships among elements in a database Describe an entity-relationship diagram

Managing Information Information system Software that helps us organize and analyze data –Flexible application software tools that allow the user to dictate and manage the organization of data, and that have basic processing capabilities to analyze the data in various ways –Two of the most popular general application information systems are electronic spreadsheets and database management systems

Database Management Systems Database A structured set of data Database management system (DBMS) A combination of software and data, including a physical database, a database engine, and a database schema –Physical database A collection of files that contain the data –Database engine Software that supports access to and modification of the database contents –Database schema A specification of the logical structure of the data stored in the database

Database Management Systems The elements of a database management system

Database Management Systems Work with specialized database languages (like SQL) or a GUI interface (like in ACCESS) Allow the user to specify the structure of data; add, modify, and delete data; query the database to retrieve specific stored data and create reports The database schema provides the logical view of the data in the database

The Relational Model In a relational DBMS, the data items and the relationships among them are organized into tables –A table is a collection of records –A record is a collection of related fields –Each field of a database table contains a single data value –Each record in a table contains the same fields

A Database Table A database table, made up of records and fields

A Database Table We can express the schema for this part of the database as follows: Movie (MovieId:key, Title, Genre, Rating)

Relationships A database table containing customer data Address

Relationships We can use a table to represent a collection of relationships between objects A database table storing current movie rentals

Database Design Entity-relationship (ER) modeling A popular technique for designing relational databases ER Diagram Chief tool used for ER modeling that captures the important record types, attributes, and relationships in a graphical form

Database Design These designations show the cardinality constraint of the relationship An ER diagram for a movie rental database