Database Management An Introduction.

Slides:



Advertisements
Similar presentations
Information Systems Today: Managing in the Digital World
Advertisements

Database Management3-1 L3 Database Management Santa R. Susarapu Ph.D. Student Virginia Commonwealth University.
Management Information Systems, Sixth Edition
Managing Data Resources
Chapter 3 Database Management
Database Management: Getting Data Together Chapter 14.
3-1 Chapter 3 Data and Knowledge Management
McGraw-Hill/Irwin Copyright © 2008, The McGraw-Hill Companies, Inc. All rights reserved.McGraw-Hill/Irwin Copyright © 2008 The McGraw-Hill Companies, Inc.
Mgt 20600: IT Management & Applications Databases
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Chapter 3 Data and Knowledge Management
Information Technology in Organizations
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Chapter 1: The Database Environment
ACS1803 Lecture Outline 2 DATA MANAGEMENT CONCEPTS Text, Ch. 3 How do we store data (numeric and character records) in a computer so that we can optimize.
Database Design Concepts
Chapter 5 Lecture 2. Principles of Information Systems2 Objectives Understand Data definition language (DDL) and data dictionary Learn about popular DBMSs.
Databases C HAPTER Chapter 10: Databases2 Databases and Structured Fields  A database is a collection of information –Typically stored as computer.
Copyright © 2003 by Prentice Hall Module 4 Database Management Systems 1.What is a database? Data hierarchy and data organization Field, record, file,
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
Simple Database.
Chapter 6: Foundations of Business Intelligence - Databases and Information Management Dr. Andrew P. Ciganek, Ph.D.
Management Information Systems By Effy Oz & Andy Jones
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
7.1 Managing Data Resources Chapter 7 Essentials of Management Information Systems, 6e Chapter 7 Managing Data Resources © 2005 by Prentice Hall.
Information Systems Today (©2006 Prentice Hall) 3-1 CS3754 Class Note 12 Summery of Relational Database.
© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1 Chapter 1: The Database Environment Modern Database Management 9 th Edition Jeffrey A. Hoffer,
Lecturer: Gareth Jones. How does a relational database organise data? What are the principles of a database management system? What are the principal.
1.file. 2.database. 3.entity. 4.record. 5.attribute. When working with a database, a group of related fields comprises a(n)…
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
1 Database Concepts 2 Definition of a Database An organized Collection Of related records.
EAK 362/2 MIS LECTURE 4 PART 2 Managing Databases.
Technology In Action Chapter 11 1 Databases and… Databases and their uses Database components Types of databases Database management systems Relational.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 4c, Database H Definition H Structure H Parts H Types.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
ITGS Databases.
Database revision.
1 Technology in Action Chapter 11 Behind the Scenes: Databases and Information Systems Copyright © 2010 Pearson Education, Inc. Publishing as Prentice.
CISB113 Fundamentals of Information Systems Data Management.
Organizing Data and Information
Management Information Systems, 4 th Edition 1 Chapter 8 Data and Knowledge Management.
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
Information Systems Today: Managing in the Digital World TB3-1 3 Technology Briefing Database Management “Modern organizations are said to be drowning.
Chapter 10 Database Management. Data and Information How are data and information related? p Fig Next processing data stored on disk Step.
0 / Database Management. 1 / Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.
3/6: Data Management, pt. 2 Refresh your memory Relational Data Model
© 2006 Pearson Education Canada Inc. 3-1 Chapter 3 Database Management PowerPoint Presentation Jack Van Deventer Ward M. Eagen.
© 2003 Prentice Hall, Inc.3-1 Chapter 3 Database Management Information Systems Today Leonard Jessup and Joseph Valacich.
UNIVERSITI TENAGA NASIONAL “Generates Professionals” MODULE 5 : Part 1 INTRODUCTION TO DATABASE.
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
3-1 Chapter 3 Data and Knowledge Management
Managing Data Resources File Organization and databases for business information systems.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
Management Information Systems by Prof. Park Kyung-Hye Chapter 7 (8th Week) Databases and Data Warehouses 07.
Information Systems Today: Managing in the Digital World
ACS1803 Lecture Outline 2   DATA MANAGEMENT CONCEPTS Text, Ch. 3
Databases and Information Management
MANAGING DATA RESOURCES
Database.
Data Resource Management
MANAGING DATA RESOURCES
Databases and Information Management
The ultimate in data organization
Data Resource Management
Chapter 3 Database Management
Presentation transcript:

Database Management An Introduction

Goals For Today: Describe why databases have become so important to modern organizations Describe what database and database management systems are and how they work. Explain four emerging database trends: (1) client / server computing, (2) object-oriented databases, (3) data mining, and (4) integrating Web applications

Database Defined Database: What are some examples of Databases? A collection of related data organized in a way that facilitates data searches. What are some examples of Databases?

Example of a Student Database Types of Data Collected in a Typical Student Database

Databases Before the Use of Computers Data was stored in: books ledgers card files folders file cabinets or simply in people’s heads!?

Computers make the process of storing and managing data easier

The Database Approach Database Management System Entity software application which allows you to create, store, organize, and retrieve data from a single database or many databases. Example: MS Access Entity something you collect data about Examples: people or classes

A Database Contains the Following: Tables how entities are represented in a database, where each row is a record and each column a field. Fields individual pieces of information Record collection of related fields within one entity

Sample Data Table (page 2-94 in your book)

Key Database Issues and Activities Entering and Querying Data Creating Database Reports Data Structure Data Type

Entering Data Data Entry: process of getting information into a database possible methods of data entry: Data Entry Professional, Electronic Files, Historical Records, or Web Based (Forms)

Querying Data Querying: Structured Query Language (SQL): how we get information from a database Structured Query Language (SQL): most common language used to interface with databases Example: SELECT DISTINCTROW STUDENT_ID, GRADE FROM GRADES WHERE GRADE = “A” ORDER BY STUDENT_ID;

Querying Data continued Query By Example (QBE) enables you to fill out a grid, or template, in order to construct a description of the data you would like to retrieve.

Creating Database Reports A compilation of data from the database that is organized and produced in a printed format. Typically produced on paper, but also can be displayed on-screen. Example: Quarterly Sales Report

Data Structure Database has two parts: Data Model: Primary Key: Data Data Structure: how the data is organized. Data Model: representation of entities and their relationships to the real world Primary Key: a unique identifier in the database one or more fields

Data Structure continued Primary Key is Student ID

Data Type Data Type: Data Dictionary: each field in the database needs to be of a certain type Examples: text, number, dates Data Dictionary: a document (often published online) prepared by the database designers to aid users in data entry.

Data Dictionary Example: Students Table Primary Key Field Name Field Type Field Length yes Student ID Number 9 no Last Name Text 20 no First Name Text 15

Database Management Systems Approaches The Hierarchical Model The Network Model Relational Model Normalization Associations

The Hierarchical Model Records in parent entities can have many child records, but each child can have only one parent. Parent Child

The Network Model In this case you can have multiple children and parents Parents Children

The Relational Model A good relational database design eliminates unnecessary data duplications and is, therefore, easier to maintain Relationship: joining two tables on a common field Relationship

Normalization A technique used to make complex databases more efficient and easier to handle Eliminates Redundant Data

Normalization continued Database w/redundant data

Database after Normalization

Three Types of Associations or Relationships One-to-One Each team has only one home stadium, and each home stadium has only one team Team ID Team Name Location Stadium ID One-to-Many Each Player is on only one team, but each team has many players Player ID Player Name Position Team ID Many-to-Many Each player participates in many games, and each game has many players Team 1 Team 2 Date Player ID Points Minutes Fouls

Recent Developments Affecting Database Design and Use Databases and Client / Server Computing Object-Oriented Databases Data Mining Linking Web Site Applications to Organizational Databases

Databases and Client / Server Computing Database application is divided into two parts: Database Server where all data is stored on a powerful machine PC Client the program used to manipulate the data resides on an individual user’s computer

Object-Oriented Databases treat tables, queries, and other components as generic reusable OBJECTS (rather than data) that can be mixed and matched and used in many applications (e.g. MS Excel and MS Access). Most of today’s database applications have some of these Object characteristics.

Data Mining Allows companies to sort and analyze information to better understand customers, products, markets, or any other phase of their business for which data has been captured. Example: Grocery Store Club Cards

Data Mining continued Data Warehouses An integration of multiple, large databases and other information sources into a single repository or access point that is suitable for direct querying, analysis, or processing

Data Warehouse Examples TELECOMMUNICATIONS REPRESENTATIVE COMPANIES Analysis of the following: AT&T Call volumes Ameritech Equipment sales Belgacom Customer profitability British Telecom Costs Telestra AustraliaTelecom Ireland Inventory Telecom Italia Purchasing leverage with suppliers Frequent buyer program management

Data Mining continued Data Marts A small-scale data warehouse that contains a subset of the data for a single aspect of a company’s business Examples: finance, inventory, or personnel

Linking Web Site Applications to Organizational Databases Example: many comapies are enabling users of their Web Site to: view product catalogs, check inventory, and place orders these are all actions that read and write to the organizations’ databases.

Goals For Today: Described why databases have become so important to modern organizations Described what database and database management systems are and how they work. Explained four emerging database trends: (1) client / server computing, (2) object-oriented databases, (3) data mining, and (4) integrating Web applications