Database & Information Systems

Slides:



Advertisements
Similar presentations
Lecture-7/ T. Nouf Almujally
Advertisements

Chapter 1: The Database Environment
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
Your Interactive Guide to the Digital World Discovering Computers 2012 Chapter 10 Managing a Database.
Database Management: Getting Data Together Chapter 14.
Organizing Data & Information
Living in a Digital World Discovering Computers 2010.
1212 CHAPTER DATABASES. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved Competencies Distinguish between the physical and logical view.
Discovering Computers Fundamentals, 2011 Edition Living in a Digital World.
Introduction to Database Management
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 7 Information System Data Management.
Chapter 1 Introduction to Databases
Chapter 9 Database Management
7.1 Copyright © 2005 Pearson Education Canada Inc. Management Information Systems, Second Canadian Edition Chapter 7: Managing Data Resources MANAGING.
1 Pertemuan 18 Basisdata (Databases) (Lanjutan) Matakuliah: T0604-Pengantar Teknologi Informasi Tahun: 2008 Versi: 2.0/0.0 Williams, B.K, Stacy C. Sawyer.
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.
Introduction to Information Technology: Your Digital World © 2013 The McGraw-Hill Companies, Inc. All rights reserved.Using Information Technology, 10e©
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Files, Databases, & E-Commerce 1 Using Information Technology Chapter 8 Files, Databases, & E-Commerce.
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.
Chapter 9 Database Management. Chapter 9 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Discuss.
Lead Black Slide Powered by DeSiaMore1. 2 Chapter 7 Information System Data Management.
1 Pertemuan 17 Basisdata (Databases) Matakuliah: T0604-Pengantar Teknologi Informasi Tahun: 2008 Versi: 2.0/0.0 Williams, B.K, Stacy C. Sawyer (2007).
Copyright © 2015 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
Data resource management
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.
CIS 250 Advanced Computer Applications Database Management Systems.
1 Basisdata (Databases) Williams, B.K, Stacy C. Sawyer (2007). Using Information Technology: A Practical Introduction to Computers & Communications. Seventh.
Chapter 11 Information and Data Management Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet.
Introduction to Databases Angela Clark University of South Alabama.
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.
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.
Intro to MIS – MGS351 Databases and Data Warehouses
Computers: Tools for an Information Age
Using Information Technology
Introduction to Computing Lecture # 13
Fundamentals & Ethics of Information Systems IS 201
Chapter Ten Managing a Database.
Database Management Systems
RELATIONAL DATABASE MODEL
Computers: Tools for an Information Age
Chapter 13 Databases and Information Management
Data Resource Management
What is a Database and Why Use One?
Basic Concepts in Data Management
MANAGING DATA RESOURCES
Chapter 1 Database Systems
Managing data Resources:
DATABASES 6 Chapter.
Data Resource Management
Basisdata (Databases)
Chapter 1: The Database Environment
MANAGING DATA RESOURCES
Chapter 1 Database Systems
DATABASES WHAT IS A DATABASE?
Data Resource Management
Chapter 3 Database Management
The Database Environment
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management
Presentation transcript:

Database & Information Systems 8 Chapter Database & Information Systems 8.1 Managing Files: Basic Concepts 8.2 Database Management Systems 8.3 Database Models 8.4 Data Mining 8.5 Databases & The Digital Economy 8.6 Using Databases to Help Make Decisions 8.7 Artificial Intelligence 8.8 The Ethics of Using Databases McGraw-Hill/Irwin © 2007 The McGraw-Hill Companies, Inc. All rights reserved.

Managing Files: Basic Concepts A database is a logically organized collection of related data designed and built for a specific purpose Data is stored hierarchically for easier storage and retrieval Files: collections of related records Records: collections of related fields Field: unit of data containing 1 or more characters Character: a letter number or special character made of bits Bit: a 0 or 1

Managing Files: Basic Concepts Key Field – the field that identifies a record Often an identifying number, such as social security number Primary keys must be unique Keys are used to pick records out of a database Unique keys make records stand out from each other If two records had the same key, then you might not pick the correct one Nonprimary keys are used to sort records in different ways Foreign keys are fields that appear in two different tables and are used to relate one table to another

Managing Files: Basic Concepts This example shows a sample database in Microsoft Access. Products is a table. ProductID is the primary key of the Product table. ProductID is also a foreign key in the Orders table

Managing Files: Basic Concepts Program files are files containing software instructions Source program files are written by the software developer in the programming language Double-clicking on them won’t run them They have file extensions like .cpp, .jav, .bas Executable files are program files translated so they can be executed on the computer Double-clicking on them will cause them to run They have file extensions like .exe or .com

Managing Files: Basic Concepts Data files are files that contain data such as words, numbers, pictures, or sounds These are the files that are used in databases They have extensions such as .txt .mdb, and .xls Graphics files have extensions like .tiff, .jpeg, and .png Audio files have extensions such as .mp3, .wav, and .mid Animation/video files have extensions such as .qt, .mpg, .avi, and .rm Data files are often compressed to save space and transmit them faster Compression removes repetitive elements from a file

Database Management Systems Software written specifically to control the structure of a database and access to the data Reduced data redundancy Redundant data is stored in multiple places, which causes problems keeping all the copies current Improved data integrity Means the data is accurate, consistent, and up to date Increased security Limits who can create, read, update, and delete the data Ease of data maintenance Offer validation checks, backup utilities, and procedures for data inserting, updating, and deletion

Database Management Systems 3 Principal Components Data Dictionary A repository that stores the data definitions and descriptions of the structure of the data and the database DBMS Utilities Programs that allow you to maintain the database by creating, editing, deleting data, records, and files Also include automated backup and recovery Report Generator Program for producing an on-screen or printed document form all or part of a database

Database Management Systems Database Administrator Database Administrator (DBA) A high-paid, responsible position within an organization Coordinates all related activities and needs for an organization’s database Ensures the database’s Recoverability Integrity Security Availability Reliability Performance Discussion Question: Did you know that 93% of companies that lost their data center for 10 days or more due to a disaster filed for bankruptcy within a year?

Database Models Hierarchical database Network database Relational database Object-oriented database Multidimensional database Fields or records are arranged in a family tree, with child records subordinate to parent or higher-level records Like a hierarchical database, but each child record can have more than one parent record Relates, or connects, data in different files through the use of a key, or common data element Uses objects (software written in small, reusable chunks) as elements within database files Models data as facts, dimensions, or numerical measures for use in the interactive analysis of large amounts of data

Database Models Hierarchical Databases Fields or records are arranged in related groups resembling a family tree with child (low-level) records subordinate to parent (high-level) records Root record is the parent record at the top of the database, and data is accessed through the hierarchy Oldest and simplest; used in mainframes

Database Models Network Database Similar to a hierarchical database, but each child record can have more than one parent record Used principally with mainframe computers Requires the database structure to be defined in advance

Database Models Relational Database Relates or connects data in different files through the use of a key, or common data element Examples are Oracle, Informix, Sybase Data exists independently of how it is physically stored Users don’t need to know data structure to use the database Uses SQL (structured query language) to create, modify, maintain, and query the data Query by Example uses sample records or forms to allow users to define the qualifications for choosing records

Database Models Object-oriented Databases Use “objects”, software written in small, manageable chunks, as elements within data files An object consists of Data in any form, including audio, graphics, and video Instructions on the action to be taken with the data Examples include FastObjects, GemStone, Objectivity DB, Jasmine Object Database, and KE Express Types include Web database Hypermedia database

Database Models Multidimensional Database Models data as facts, dimensions, or numerical answers for use in the interactive analysis of large amounts of data for decision-making purposes Allows users to ask questions in colloquial English Use OLAP (Online Analytical Processing) software to provide answers to complex database queries