Database Systems Chapter 3 1.

Slides:



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

The database approach to data management provides significant advantages over the traditional file-based approach Define general data management concepts.
Information Systems Chapter 2 Organizing Data and Information.
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
Fundamentals of Information Systems Fourth Edition
Databases and Database Management Systems
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Principles of Information Systems Eighth Edition
COMPUTING FOR BUSINESS AND ECONOMICS-III. Lecture no.6 COURSE INSTRUCTOR- Ms. Tehseen SEMESTER- Summer 2010.
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.
2005 SPRING CSMUIntroduction to Information Management1 Organizing Data John Sum Institute of Technology Management National Chung Hsing University.
Organizing Data and Information AD660 – Databases, Security, and Web Technologies Marcus Goncalves Spring 2013.
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
Principles of Information Systems
Database A database is a collection of data organized to meet users’ needs. In this section: Database Structure Database Tools Industrial Databases Concepts.
Oleh Munawar Asikin. Principles of Information Systems, Seventh Edition 2  Database management system (DBMS): group of programs that manipulate database.
Organizing Data and Information. What is Data?? Numbers, characters, images, or other method of recording, in a form which can be assessed by a human.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 Data Resource Management.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
Database Systems Basic Data Management Concepts
Data resource management
Database Fundamentals CSC105 Furman University Peggy Batchelor.
Organizing Data and Information
McGraw-Hill/Irwin ©2009 The McGraw-Hill Companies, All Rights Reserved CHAPTER 6 DATABASES AND DATA WAREHOUSES CHAPTER 6 DATABASES AND DATA WAREHOUSES.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
Database Concepts and Applications in HRIS
Foundations of information systems : BIS 1202 Lecture 4: Database Systems and Business Intelligence.
Management Information Systems by Prof. Park Kyung-Hye Chapter 7 (8th Week) Databases and Data Warehouses 07.
1 Finding Your Way Through a Database Exploring Microsoft Office Access.
Copyright © 2013 Dorling Kindersley (India) Pvt. Ltd. Management Information Systems: Managing the Digital Firm, 12eAuthors: Kenneth C. Laudon and Jane.
Pengantar Sistem Informasi
Data Resource Management
Introduction To DBMS.
Fundamentals of Information Systems, Sixth Edition
Chapter 5 Database Systems and Business Intelligence
Lecture 1 Introduction to Database
IS 130 Information systems 1
 2012 Pearson Education, Inc. All rights reserved.
Information Systems Today: Managing in the Digital World
Information Systems, Ninth Edition
Fundamentals of Information Systems, Sixth Edition
Fundamentals & Ethics of Information Systems IS 201
What is an attribute? How is it related to an entity?
Fundamentals of Information Systems
Chapter 4 Relational Databases
Database Management  .
Data Resource Management
Databases and Information Management
What is a Database and Why Use One?
Big Data The huge amount of data being collected and stored about individuals, items, and activities and to the process of drawing useful information from.
Data Base System Lecture : Database Environment
MANAGING DATA RESOURCES
File Systems and Databases
Chapter 5 Data Resource Management.
CHAPTER SIX OVERVIEW SECTION 6.1 – DATABASE FUNDAMENTALS
MANAGING DATA RESOURCES
Data base management system dbms
Principles of Information Systems Eighth Edition
Databases and Information Management
CHAPTER 1: THE DATABASE ENVIRONMENT AND DEVELOPMENT PROCESS
Database Design Hacettepe University
Databases and Information Management
Database management systems
Presentation transcript:

Database Systems Chapter 3 1

Data Management Without data and the ability to process the data an organization could not successfully complete most business activities (e.g., pay employees, order new inventory) Data consists of raw facts To transform data into useful information it must first be organized in a meaningful way

Logical Data Elements Data may be logically organized into: character field record file database

Logical Data Elements Character Field (data item) Record File (table, flat file) Database A basic building block of most information, consisting of: uppercase letters, lowercase Letters numeric digits special symbols Example: A,B,c 0,1,8 _,%,& Typically a name, number, or combination of characters that describes an aspect of a business object or activity. Examples: salary, job title A collection of data fields all related to one object, activity, or individual. Example: payroll records with name, SSN, pay rate A collection of related records. Example: employee file a collection of integrated and related files.

Why Learn About Database Systems, Data Centers, and Business Intelligence? Organized collection of data Database management system (DBMS): Group of programs that manipulate the database Provide an interface between the database and its users and other application programs Database administrator (DBA): Skilled IS professional who directs all activities related to an organization’s database

Data Entities, Attributes, and Keys Entities, attributes, and keys are important database concepts. Entity: General class of people, places, or things (objects) for which data is collected, stored, and maintained EX: employee, customer and inventory. Attribute: Characteristic of an entity EX: employee number, first name, hire date Data item: Specific value of an attribute

Data Entities, Attributes, and Keys

Data Entities, Attributes, and Keys Field or set of fields in a record that is used to identify the record Primary key: Field or set of fields that uniquely identifies the record. The primary key is used to distinguish records so that they can be accessed, organized, and manipulated. Primary keys ensure that each record in a file is unique. Ex. Employee#, Student_ID

The Database Approach Traditional approach to data management: An approach to data management whereby each distinct operational system used data files dedicated to that system. Database approach to data management: An approach to data management whereby a pool of related data is shared by multiple information systems. To use the database approach to data management, additional software is required a database management system (DBMS)

The Database Approach (continued)

Advantages of the Database Approach

Disadvantages of the Database Approach