Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.

Slides:



Advertisements
Similar presentations
WHAT D IS RAW, UNPROCESSED FACTS AND FIGURES COLLECTED, STORED AND PROCESSED BY COMPUTERS.
Advertisements

© Paradigm Publishing, Inc. 9-1 Chapter 9 Database Information and Management Chapter 9 Database and Information Management.
Management Information Systems, Sixth Edition
Computer Concepts 5th Edition Parsons/Oja Page 492 CHAPTER 10 File And Database Concepts Section A PARSONS/OJA Databases.
Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Your Interactive Guide to the Digital World Discovering Computers 2012 Chapter 10 Managing a Database.
Database Management: Getting Data Together Chapter 14.
Introduction to Databases CIS 5.2. Where would you find info about yourself stored in a computer? College Physician’s office Library Grocery Store Dentist’s.
Getting Started (Excerpts) Chapter One DAVID M. KROENKE’S DATABASE CONCEPTS, 2 nd Edition.
Living in a Digital World Discovering Computers 2010.
Accounting Databases Chapter 2 The Crossroads of Accounting & IT
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 # 04Information and Databases Information and Database.
Information systems and databases Database information systems Read the textbook: Chapter 2: Information systems and databases FOR MORE INFO...
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Databases & Data Warehouses Chapter 3 Database Processing.
PHASE 3: SYSTEMS DESIGN Chapter 7 Data Design.
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.
ASP.NET Programming with C# and SQL Server First Edition
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.
DATABASE. A database is collection of information that is organized so that it can easily be accessed, managed and updated. It is also the collection.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Chapter 9 Designing Databases Modern Systems Analysis and Design Sixth Edition Jeffrey A. Hoffer Joey F. George Joseph S. Valacich.
Management Information Systems By Effy Oz & Andy Jones
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
Introduction to Microsoft Access Overview 1. Introduction What is Access? A relational database management system What is a Relational Database? Organized.
PgP MIS 202 Access Overview 1 Microsoft Access Introduction to Relational Databases Powerful tool to collect and analyze business data, facilitates decision-
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
Chapter 7 Working with Databases and MySQL PHP Programming with MySQL 2 nd Edition.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe the qualities of valuable information.
Database Management Systems Introduction. In the Beginning… Customer Program 1.
Object Persistence (Data Base) Design Chapter 13.
Principles of Database Design, Conclusions AIMS 2710 R. Nakatsu.
MC-Quiz: Chapter 10 - Database Management Discovering Computers 2010.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
What have we learned?. What is a database? An organized collection of related data.
Programming Logic and Design Fourth Edition, Comprehensive Chapter 16 Using Relational Databases.
Database Management Supplement 1. 2 I. The Hierarchy of Data Database File (Entity, Table) Record (info for a specific entity, Row) Field (Attribute,
Foundations of Business Intelligence: Databases and Information Management.
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.
1 Chapter 9 Database Management. Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe.
Presentation on Database management Submitted To: Prof: Rutvi Sarang Submitted By: Dharmishtha A. Baria Roll:No:1(sem-3)
VOCAB REVIEW. A field that can be computed from other fields Calculated field Click for the answer Next Question.
1 Course Medical Statistics with Informatics. Data Base and information management.
1 SQL SERVER 2005 Express CE-105 SPRING 2007 Engr. Faisal ur Rehman.
Management Information Systems by Prof. Park Kyung-Hye Chapter 7 (8th Week) Databases and Data Warehouses 07.
Databases Key Revision Points.
Information Systems Today: Managing in the Digital World
Chapter Ten Managing a Database.
Database Management Systems
Database Management  .
Databases and Information Management
What is a Database and Why Use One?
Chapter 8 Working with Databases and MySQL
Chapter 9 Database and Information Management.
Databases and Information Management
Presentation transcript:

Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition

Definitions Database - computerized system for storing information so that information can be searched for and retrieved when needed Entity – person, place, thing, or event Field – smallest data category in a database, generally has 3 attributes – data type, name, size (number of characters that can be entered) Record – collection of fields describing an entity Table – collection of records containing the same fields Primary key – For a field to be a primary key in a table, it must have a value for every record and the value must be unique (no 2 records with same value)

Queries Queries – questions to retrieve needed information from database Structured Query Language (SQL) is the most popular database query language Example: SELECT Student.FName, Student.LName, Student.StuID FROM StudentData WHERE Student.GPA>3.49 AND Student.Enrolled=“YES”

Databases Classified by Data Model Flat File Databases – contain only one table or file Relational Databases – information stored in tables related to each other so that a piece of data is stored in only one place Object-oriented Databases – data stored in objects – each object will have allowable actions (methods) associated with it

Databases Classified by Function Operational databases – working systems that are continually being updated Data warehouse – Data is extracted from the warehouse but the warehouse is typically not modified or updated with new information

Planning for a New Database Organizational structure for the data – what fields, grouping fields by table, choosing data types for fields Design a front-end user interface for the database for data entry Design reporting capabilities

Database Objects Forms – Templates which facilitate entry of data into database Reports – Formatted output from database –Data filters – report will only show some records (e.g. WHERE clause in SELECT statement) Although form and report capabilities are part of databases, increasingly web-based forms and reports are being used for the “front end” leaving the database to do the “back end”

Database Administrator Data loss or corruption Backup and recovery Database response time Record locking – simultaneous viewing is OK, but simultaneous editing is not Data Integrity – normalization aims to eliminate data redundancy Data validation – range checks, alphanumeric checks, consistency checks, completeness checks, referential integrity

Database Operations Adding records Modifying records Deleting records Sorting records Indexing records – index makes retrieval quicker