14 - 1 Chapter 14 The Second Component: The Database.

Slides:



Advertisements
Similar presentations
C6 Databases.
Advertisements

Lecture-7/ T. Nouf Almujally
Management Information Systems, Sixth Edition
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA
Managing Data Resources
Chapter 3 Database Management
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.
Database Management: Getting Data Together Chapter 14.
Organizing Data & Information
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.
Introduction to Database Management
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 7 Information System Data Management.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Data Warehousing: Defined and Its Applications Pete Johnson April 2002.
Lecture-8/ T. Nouf Almujally
XP Information Information is everywhere in an organization Employees must be able to obtain and analyze the many different levels, formats, and granularities.
Chapter 11 Databases.
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.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA ebay
Database Systems – Data Warehousing
Chapter 5 Lecture 2. Principles of Information Systems2 Objectives Understand Data definition language (DDL) and data dictionary Learn about popular DBMSs.
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2012 (September 5, 2012)
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
The McGraw-Hill Companies, Inc Information Technology & Management Thompson Cats-Baril Chapter 3 Content Management.
Fundamentals of Information Systems, Fifth Edition
1 California State University, Fullerton Chapter 7 Information System Data Management.
1 INTRODUCTION TO DATABASE MANAGEMENT SYSTEM L E C T U R E
Chapter 6: Foundations of Business Intelligence - Databases and Information Management Dr. Andrew P. Ciganek, Ph.D.
Organizing Data and Information AD660 – Databases, Security, and Web Technologies Marcus Goncalves Spring 2013.
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
1 Adapted from Pearson Prentice Hall Adapted form James A. Senn’s Information Technology, 3 rd Edition Chapter 7 Enterprise Databases and Data Warehouses.
7.1 Managing Data Resources Chapter 7 Essentials of Management Information Systems, 6e Chapter 7 Managing Data Resources © 2005 by Prentice Hall.
Case 2: Emerson and Sanofi Data stewards seek data conformity
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Lecturer: Gareth Jones. How does a relational database organise data? What are the principles of a database management system? What are the principal.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
Professor Michael J. Losacco CIS 1110 – Using Computers Database Management Chapter 9.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Lead Black Slide Powered by DeSiaMore1. 2 Chapter 7 Information System Data Management.
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
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.
Data Resource Management
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 4 Data and Databases. Learning Objectives Upon successful completion of this chapter, you will be able to: Describe the differences between data,
INFORMATION MANAGEMENT Unit 2 SO 4 Explain the advantages of using a database approach compared to using traditional file processing; Advantages including.
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.
Data resource management
Chapter 3 Databases and Data Warehouses: Building Business Intelligence Copyright © 2010 by the McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin.
Management Information Systems, 4 th Edition 1 Chapter 8 Data and Knowledge Management.
Copyright 2004 John Wiley & Sons, Inc Information Technology: Strategic Decision Making For Managers Henry C. Lucas Jr. John Wiley & Sons, Inc Dinesh.
Department of Industrial Engineering Sharif University of Technology Session# 9.
DATA RESOURCE MANAGEMENT
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
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
INTRODUCTION TO INFORMATION SYSTEMS LECTURE 9: DATABASE FEATURES, FUNCTIONS AND ARCHITECTURES PART (2) أ/ غدير عاشور 1.
McGraw-Hill/Irwin ©2008,The McGraw-Hill Companies, All Rights Reserved Chapter 5 Data Resource Management.
Managing Data Resources File Organization and databases for business information systems.
Fundamentals of Information Systems
System And Application Software
MANAGING DATA RESOURCES
The ultimate in data organization
Presentation transcript:

Chapter 14 The Second Component: The Database

The Importance of the Database The database is where an organization stores content for instantaneous retrieval when needed –Data, documents, pictures, or anything that can be represented in a computer is stored in the database manipulated by a DBMS A business depends on information/knowledge to operate and the database is one of its most valuable resources Make technology so powerful - search at incredible speeds How? –Retrieve? –Correlate? –Go beyond data mining to semantics?

Storage of Data The first computers stored information on paper tape, punched cards, and magnetic tape The development of the magnetic disk changed processing dramatically RAM - flash memory - secondary storage Programs bring data from the disk (or secondary memory) into primary memory for processing –Disk access however is up to a million times slower than primary memory access

14 - 4

Database Management Software (DBMS) DBMSs automate tasks associate with using direct access files DBMS administrators –describe the database and its required indexes –define records Individual programs ask for specific pieces of data –only programs that access a piece of data need to be changed when that data changes

DBMS Requirements A DBMS must provide the following –A method for defining the contents of the database –A way to describe relationships among data elements and records –A mechanism to set up the database in the first place –Ways to manipulate the data including Updating (adding, modifying, and/or deleting information) Retrieval

Benefits of the Relational Database Model Data are organized in two dimensional tables which are easy to develop and understand The structure can be described mathematically –each table represents a relation Columns from tables can be extracted and even joined Relational databases are easy to use

14 - 8

An Example Records consist of related data fields –Student number, student last name, student first name, address line 1, address line 2, city, state, zip code, phone number Each field consists of one data element and the size of the field is the same for each record Index or key fields make it easier to search records –Student ID number

Microsoft Access RDBMS Can create relations and add data to them –E.g., Student and Class Inquire for information based on criteria Join relations on some key

Object-Oriented Databases Traditionally relational databases supported a limited number of data types –Alphabet, numeric, dates, and time Modern organizations use a variety of data –Graphics objects, audio clips, videos, subscripted arrays, and complex data for data mining RDBMS vendors have extended their packages to handle such data objects

Structured Query Language (SQL) A retrieval language for users Basic structure of a SQL expression –The select clause lists the attributes desired in answer to a query –The from clause is a list of relations or tables that the query language processor should consult in filling the request –The where clause describes the attributes desired in the answer SQL is used as an intermediary and a standard in accessing several different database systems

Oracle: An Enterprise DBMS Oracle DBMS architectures are server-centric Extended relational data model that supports many different data types and uses SQL for queries Typically supports thousands of users, processes terabytes of data, and integrates with Oracle application packages in financial management, supply chain management, manufacturing, etc.

Distributed Databases Different parts of the database are located on different computers in a network Issues distributed databases raise are –Will data be replicated across computers or will their be only one copy –If data are replicated, how frequently must different versions be updated to reflect changes –How will updates to the database be coordinated so that integrity is maintained –Who “owns” distributed data and who has access to it –distributed databases offer users easier access to data at the cost of higher overall complexity of the system

The Data Warehouse Businesses collect a tremendous amount of transactions data from routine operations These data can be analyzed to understand the business better –Requires multidimensional analysis called Online Analytical Processing (OLAP) –Helps create a learning organization that is better able to understand its markets, customers and itself

Data Mining Discovers interesting structure in large amounts of data This structure consists of –Patterns –Statistical or predictive models of the data –Relationships between the data Applied extensively to customer data –Allows firms to determine for instance which products sell together

Reasons for Data Mining Increasing business unit and overall profitability Understanding customer desire and needs Identifying profitable customers and acquiring new ones Retaining customers and increasing loyalty Increasing ROI and reducing costs on promotions Cross-selling and up-selling Detecting fraud, waste, and abuse Determining credit risks Increasing web site profitability Increasing store traffic and optimizing store layouts Monitoring business performance

Approaches to Data Mining Visualization - graph can tell a lot Statistical techniques Search and optimization Artificial intelligence (e.g., neural networks)

Databases and the Organization The typical organization has many databases –Some are organized while others are loose collections of information A manager is responsible for the creation, maintenance, and protection of data Databases are the firm’s memory and allow it to remain in business Provide with incredible opportunities

Summary Organizations keep tremendous amounts of machine readable data Data in files are stored in records which consist of fields which contain groups of characters The DBMS automates the task of setting up a database The relational model is the most dominant DBMS model today Data warehouses and data mining can contribute significantly to firm success