Chapter 10 Database Management. Data and Information How are data and information related? p. 10.02 Fig. 10-1 Next processing data stored on disk Step.

Slides:



Advertisements
Similar presentations
Database Management.
Advertisements

Chapter 10 Database Management
Chapter 3 Application Software p. 6.
Management Information Systems, Sixth Edition
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
Databases Chapter Distinguish between the physical and logical view of data Describe how data is organized: characters, fields, records, tables,
Chapter 12: ADO.NET and ASP.NET Programming with Microsoft Visual Basic.NET, Second Edition.
Your Interactive Guide to the Digital World Discovering Computers 2012 Chapter 10 Managing a Database.
12 CHAPTER DATABASES Databases are the key to accessing information throughout our lives. Used in hospitals, grocery stores, schools, department stores,
Database Management: Getting Data Together Chapter 14.
Living in a Digital World Discovering Computers 2010.
Discovering Computers Fundamentals, 2011 Edition Living in a Digital World.
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Chapter 14 The Second Component: The Database.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Databases Chapter 11.
Databases and Database Management Systems
Professor Michael J. Losacco CIS 1150 – Introduction to Computer Information Systems Databases Chapter 11.
Database Management.
Chapter 9 Database Management
Chapter 10 Database Management. Chapter 10 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Explain.
XP Information Information is everywhere in an organization Employees must be able to obtain and analyze the many different levels, formats, and granularities.
Discovering Computers 2009 Chapter 10 Database Management.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
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,
Your Interactive Guide to the Digital World Discovering Computers 2012.
Discovering Computers Fundamentals, 2012 Edition Your Interactive Guide to the Digital World.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
PHP Programming with MySQL Slide 8-1 CHAPTER 8 Working with Databases and MySQL.
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
Simple Database.
Management Information Systems By Effy Oz & Andy Jones
Chapter 9 Database Management
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
Chapter 10 Database Management. Chapter 10 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Explain.
Professor Michael J. Losacco CIS 1110 – Using Computers Database Management Chapter 9.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe the qualities of valuable information.
Chapter 9 Database Management. Chapter 9 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Discuss.
Copyright © 2015 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
Chapter 13 Databases and Information Management. Explain why data and information are important to an organization Identify file maintenance techniques.
Discovering Computers 2008 Chapter 10 Database Management.
1 Database Concepts 2 Definition of a Database An organized Collection Of related records.
MC-Quiz: Chapter 10 - Database Management Discovering Computers 2010.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
Data resource management
Database revision.
Management Information Systems, 4 th Edition 1 Chapter 8 Data and Knowledge Management.
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
Foundations of Business Intelligence: Databases and Information Management.
0 / Database Management. 1 / Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.
Chapter 10 Database Management. Chapter 10 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Explain.
1 Chapter 9 Database Management. Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe.
Databases Chapter Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 11 Information and Data Management Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet.
Introduction to Database Changes and new experience make life delightful. Unanimous.
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. DATABASE.
Chapter 10 Database Management. Chapter 10 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Explain.
VOCAB REVIEW. A field that can be computed from other fields Calculated field Click for the answer Next Question.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
Management Information Systems by Prof. Park Kyung-Hye Chapter 7 (8th Week) Databases and Data Warehouses 07.
Database Management System
Chapter Ten Managing a Database.
Database Management Systems
Database Management  .
Chapter 13 Databases and Information Management
What is a Database and Why Use One?
Presentation transcript:

Chapter 10 Database Management

Data and Information How are data and information related? p Fig Next processing data stored on disk Step 1. The member data, including a photograph, is entered and stored on the hard disk. Step 2. The computer extracts the member data from disk. Step 3. The receipt is created and printed.  Data is raw facts  Information is data that is organized and meaningful receipt  Computers process data into information

Add, change, and delete data Create database Sort and retrieve data Create forms and reports Data and Information What is a database? p Next Database software allows you to Collection of data organized so you can access, retrieve, and use it Database software also called database management system (DBMS) Click to view animation

The Hierarchy of Data What is a hierarchy? p Fig Next  Database contains files, file contains records, record contains fields, field contains characters

The Hierarchy of Data What is a field? p Fig Next  Combination of one or more characters  Smallest unit of data user accesses  Field size defines the maximum number of characters a field can contain  Field name uniquely identifies each field  Data type specifies kind of data field contains

The Hierarchy of Data What is a record? p Next Group of related fields Key field, or primary key, uniquely identifies each record

The Hierarchy of Data What is a data file? p Next  Collection of related records stored on disk key field recordsfields 22 Fifth Avenue P.O. Box Duluth Street Clark Street 1029 Wolf Avenue Address Auburn Clanton Prattville Montgomery City ALWeinbergJonah3928 ALMarcus4872 ALValesquezAdrian3376 ALMurrayShannon2928 ALVandenbergDonna2295 StateLast NameFirst NameMember ID Green

File Processing Versus Databases What are the strengths of the database approach? p Next Reduced data redundancy Improved data integrity Shared data Shared data Easier access Reduced development time

File Processing Versus Databases How do a database application and a file processing application differ in the way they store data? p Fig Next File Processing Example Database Example

Database Management Systems What is a query? p Fig Next  Request for specific data from a database  Query language consists of simple, English-like statements that allow users to specify data to display, print, or store Step 1. Select the fields you want to display in the resulting query. Step 2. Assign a name to the query, so you can open it later. Step 3. View query on the screen.

Relational, Object-Oriented, and Multidimensional Databases What is a data model? p Fig Next  Rules and standards that define how database organizes data  Defines how users view organization of data  Three popular data models  Relational  Object-oriented  Multidimensional DATA MODELS FOR POPULAR DBMSs

Relational, Object-Oriented, and Multidimensional Databases What is a relational database? p Fig Next Click to view Web Link, then click Relational Databases below Chapter 10  Stores data in tables that consist of rows and columns  Each row has primary key  Each column has unique name  Stores data relationships  Uses specialized terminology DATA TERMINOLOGY

Relational, Object-Oriented, and Multidimensional Databases What is a relationship? p Fig Next  Connection within data Click to view animation

Relational, Object-Oriented, and Multidimensional Databases What is Structured Query Language (SQL)? p Fig Next Click to view Web Link, then click SQL below Chapter 10  Allows you to manage, update, and retrieve data  Has special keywords and rules included in SQL statements SQL statement SQL statement results

Relational, Object-Oriented, and Multidimensional Databases What is a data warehouse? p Next Click to view Web Link, then click Data Warehouses below Chapter 10 Data mart is smaller version of data warehouse Uses multidimensional databases Often uses a process called data mining to find patterns and relationships among data Huge database system that stores and manages data required to analyze historical and current transactions Quick and efficient way to access large amounts of data

Web Databases What is a Web database? p Fig Next  Database you access through the Web by filling in a form on a Web page  Usually resides on a database server, a computer that stores and provides access to a database Click to view video

Web Databases How might a search engine interact with a Web database? p Fig Next Step 1. Browser sends search text to Web server. Step 2. Web server sends search text through a CGI script to database. Database retrieves list of hits that contains search text and sends it through CGI script back to Web server. Step 3. Web server sends list of hits to browser. Click to view video