Fundamentals of Information Systems

Slides:



Advertisements
Similar presentations
Fundamentals of Information Systems, Sixth Edition
Advertisements

Dengan FoxPro Ichwan R Tandjung Pemrograman Terstruktur Pokok Bahasan Konsep Database Konsep dasar pemahaman pemrograman dengan Foxpro Konsep pemrograman.
The database approach to data management provides significant advantages over the traditional file-based approach Define general data management concepts.
Management Information Systems, Sixth Edition
Managing Data Resources
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.
What it’s all about.
Fundamentals of Information Systems, Second Edition 1 Organizing Data and Information Chapter 3.
Organizing Data & Information
Fundamentals of Information Systems Fourth Edition
Mgt 20600: IT Management & Applications Databases
Organizing Data and Information
MSIS 110: Introduction to Computers; Instructor: S. Mathiyalakan1 Organizing Data and Information Chapter 5.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Principles of Information Systems, Sixth Edition Organizing Data and Information Chapter 5.
Principles of Information Systems Eighth Edition
Fundamentals of Information Systems, Fifth Edition
Fundamentals of Information Systems, Third Edition2 Principles and Learning Objectives The database approach to data management provides significant advantages.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Chapter 5 Lecture 2. Principles of Information Systems2 Objectives Understand Data definition language (DDL) and data dictionary Learn about popular DBMSs.
Fundamentals of Information Systems, Second Edition 1 Organizing Data and Information.
The McGraw-Hill Companies, Inc Information Technology & Management Thompson Cats-Baril Chapter 3 Content Management.
Fundamentals of Information Systems, Fifth Edition
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, Tenth Edition Chapter 5 Database Systems, Data Centers, and Business Intelligence.
311: Management Information Systems Database Systems Chapter 3.
1 Information Systems, Ninth Edition Chapter 5 Database Systems and Business Intelligence.
Principles of Information Systems
Fundamentals of Information Systems, Seventh Edition 1 Chapter 3 Data Centers, and Business Intelligence.
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.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Principles of Information Systems, Sixth Edition Organizing Data and Information Chapter 5.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 Data Resource Management.
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
Information Systems, Tenth Edition Chapter 5 Database Systems, Data Centers, and Business Intelligence.
Organizing Data and Information
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
Chapter 3 Database Systems, Data Centers, and Business Intelligence
Principles of Information Systems, Sixth Edition Organizing Data and Information Chapter 5.
Principles of Information Systems, Eleventh Edition
Principles of Information Systems, Sixth Edition Organizing Data and Information Chapter 5.
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
Foundations of information systems : BIS 1202 Lecture 4: Database Systems and Business Intelligence.
2 Information Systems Chapter 5 Database Systems and Business Intelligence.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
Managing Data Resources File Organization and databases for business information systems.
THE LEONS COLLEGE OF LAW1 Organizing Data and Information Chapter 4.
Popular Database Management Systems
Pengantar Sistem Informasi
Intro to MIS – MGS351 Databases and Data Warehouses
Data Resource Management
Principles of Information Systems, Tenth Edition
Fundamentals of Information Systems, Sixth Edition
Chapter 5 Database Systems and Business Intelligence
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?
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.
MANAGING DATA RESOURCES
Chapter 5 Data Resource Management.
Fundamentals of Information Systems, Seventh Edition
MANAGING DATA RESOURCES
Principles of Information Systems Eighth Edition
Presentation transcript:

Fundamentals of Information Systems Sixth Edition

Principles and Learning Objectives The database approach to data management provides significant advantages over the traditional file-based approach. Define general data management concepts and terms, highlighting the advantages of the database approach to data management. Describe the relational database model and outline its basic features. Principles of Information Systems, Sixth Edition.

Principles and Learning Objectives (continued) A well-designed and well-managed database is an extremely valuable tool in supporting decision making. Identify the common functions performed by all database management systems and identify popular end-user database management systems. Principles of Information Systems, Sixth Edition.

Principles and Learning Objectives (continued) The number and types of database applications will continue to evolve and yield real business benefits. Identify and briefly discuss current database applications. Principles of Information Systems, Sixth Edition.

3.1 Data 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 block of information. Field: name, number, or characters that describe an aspect of a business object or activity. Record: a collection of related data fields. File: a collection of related records. Database: a collection of integrated and related files. Principles of Information Systems, Sixth Edition.

Figure 3.1: The Hierarchy of Data Principles of Information Systems, Sixth Edition.

3.2 Data Entities, Attributes, and Keys Entity: a generalized class of people, places, or things (objects) for which data is collected, stored, and maintained. Attribute: a characteristic of an entity. Data item: a value of an attribute. Key: field(s) that identify a record. Primary key: field(s) that uniquely identify a record. Principles of Information Systems, Sixth Edition.

Figure 3.2: Keys and Attributes. Principles of Information Systems, Sixth Edition.

3.3 Database Management Systems (DBMS) Interface between: Database and application programs Database and the user Database types: Flat file Single user Multiple users Principles of Information Systems, Sixth Edition.

Advantages of the Database Approach Better access to data and information. Reduced data redundancy. Improved data integrity. Easier modification and updating. Better overall protection of data. Shared data and information resources. Principles of Information Systems, Sixth Edition.

3.4 Creating and Modifying the Database Data definition language (DDL): Collection of instructions/commands that define and describe data and data relationships in a database. Allows database creator to describe the data and the data relationships that are to be contained in the schema and the subschemas. Data dictionary: a detailed description of all the data used in the database. Principles of Information Systems, Sixth Edition.

Manipulating Data and Generating Reports Query-By-Example (QBE): a visual approach to developing database queries or requests. Data manipulation language (DML): commands that manipulate the data in a database. Structured Query Language (SQL): ANSI standard query language for relational databases Database programs can produce reports, documents, and other outputs. Principles of Information Systems, Sixth Edition.

Figure 3.3: Database Output. Principles of Information Systems, Sixth Edition.

3.5 Database Administration Database administrator (DBA): directs or performs all activities to maintain a database environment: Roles: Designing, implementing, and maintaining the database system and the DBMS. Establishing policies and procedures. Training employees. Principles of Information Systems, Sixth Edition.

3.6 Example Database Management Systems (1) Popular DBMSs for end users: Microsoft Access and Corel's Paradox. (2) The complete database management software market includes databases by IBM, Oracle, and Microsoft. Principles of Information Systems, Sixth Edition.

3.7 Selecting a Database Management System Important characteristics of databases to consider: Size of the database. Number of concurrent users. Performance. Ability to be integrated with other systems. Features of the DBMS. Vendor considerations. Cost of the system. Principles of Information Systems, Sixth Edition.

3.8 Data Warehouses, Data Marts, and Data Mining Data warehouse: collects business information from many sources in the enterprise. Data mart: a subset of a data warehouse. Data mining: an information-analysis tool for discovering patterns and relationships in a data warehouse or a data mart. Principles of Information Systems, Sixth Edition.

Common Data-Mining Applications Branding and positioning of products (Enable the strategists to visualize different position of the competitors for a given product.) Customer churn (Predict current customers who are likely to go to the competitors). Direct marketing (Identify prospects of direct marketing like direct mailing). Fraud detection (Highlight transactions to be deceptive or illegal). Trend analysis (Analyze how key variables like sales, promotions vary over a period of time). Market segmentation (Group customers what they are and what they prefer.) Principles of Information Systems, Sixth Edition.

Online Analytical Processing (OLAP) Software that allows users to explore data from a number of different perspectives. Table 3.4: Comparison of OLAP and Data Mining Principles of Information Systems, Sixth Edition.

Self Examination Questions Short Answer Questions (3 marks) 1) Define the terms: Entity, OLAP, OODBMS and ORDBMS. 2) Define the terms: DDL, QBE, DML, SQL. 3) Give any FIVE advantages of the database approach. 4) Who is a DBA? What are his roles? 5) What are some of the popular Database Management Systems? 6) What are the criteria for selecting a Database Management Systems? 7) Differentiate between OLAP and Data Mining.   Long Answer Questions (5 marks) 8) Define all the components of the Hierarchy of Data. 9) Describe the Database Management System? 10) What are data warehouse, data mart and data mining applications? List out any FIVE common Data-Mining applications. Principles of Information Systems, Sixth Edition.