Oleh Munawar Asikin. Principles of Information Systems, Seventh Edition 2  Database management system (DBMS): group of programs that manipulate database.

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
Introduction to Databases Transparencies
Mgt 20600: IT Management & Applications Databases
Organizing Data and Information
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Principles of Information Systems, Sixth Edition Organizing Data and Information Chapter 5.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
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.
Chapter 5 Lecture 2. Principles of Information Systems2 Objectives Understand Data definition language (DDL) and data dictionary Learn about popular DBMSs.
The McGraw-Hill Companies, Inc Information Technology & Management Thompson Cats-Baril Chapter 3 Content Management.
 Definition  Components  Advantages  Limitations Contents  DBMS DBMS  Functions Functions  Architecture Architecture.
Fundamentals of Information Systems, Fifth Edition
Database Technical Session By: Prof. Adarsh Patel.
 DATABASE DATABASE  DATABASE ENVIRONMENT DATABASE ENVIRONMENT  WHY STUDY DATABASE WHY STUDY DATABASE  DBMS & ITS FUNCTIONS DBMS & ITS FUNCTIONS 
Management Information Systems By Effy Oz & Andy Jones
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, Tenth Edition Chapter 5 Database Systems, Data Centers, and Business Intelligence.
1 January Management of Information Technology Chapter 10 Database Management Asst. Prof. Wichai Bunchua
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
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.
Unit 2 – Application & Implication Module 1 – Information Management.
Principles of Information Systems, Sixth Edition Organizing Data and Information Chapter 5.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
1 Why Learn About Database Systems? Database systems process and organize large amounts of data Examples –Marketing manager can access customer data –Corporate.
Database Systems Basic Data Management Concepts
Data resource management
Information Systems, Tenth Edition Chapter 5 Database Systems, Data Centers, and Business Intelligence.
Organizing Data and Information
Chapter 3 Database Systems, Data Centers, and Business Intelligence
2/20: Ch. 6 Data Management What is data? How is it stored? –Traditional management storage techniques; problems –DBMS.
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.
THE LEONS COLLEGE OF LAW1 Organizing Data and Information Chapter 4.
Pengantar Sistem Informasi
Principles of Information Systems, Tenth Edition
Fundamentals of Information Systems, Sixth Edition
Chapter 5 Database Systems and Business Intelligence
IS 130 Information systems 1
Database Systems Chapter 3 1.
Information Systems, Ninth Edition
Fundamentals of Information Systems, Sixth Edition
Fundamentals & Ethics of Information Systems IS 201
Fundamentals of Information Systems
Chapter 4 Relational Databases
Fundamentals of Information Systems, Seventh Edition
Principles of Information Systems Eighth Edition
Presentation transcript:

Oleh Munawar Asikin

Principles of Information Systems, Seventh Edition 2  Database management system (DBMS): group of programs that manipulate database and provide interface between database and users  Database administrator (DBA): a skilled information systems professional who directs all activities related to organization’s database

Principles of Information Systems, Seventh Edition 3  A bit (a binary digit) represents a circuit that is either on or off  A byte is typically 8 bits  Character: each byte represents a character, the basic building block of information  Field: typically a name, number, or combination of characters that describes an aspect of a business object or activity

Principles of Information Systems, Seventh Edition 4  Record: a collection of related data fields  File: a collection of related records  Database: a collection of integrated and related files  Hierarchy of data: formed by bits, characters, fields, records, files, and databases

5

6  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: the specific value of an attribute  Key: a field or set of fields in a record that is used to identify the record  Primary key: a field or set of fields that uniquely identifies the record

7

8  Traditional approach: separate data files are created and stored for each application program  Results in data redundancy: duplication of data in separate files  Data redundancy conflicts with data integrity (the degree to which the data in any one file is accurate)  Database approach: approach whereby a pool of related data is shared by multiple application programs; offers significant advantages over traditional file-based approach

9

10

11  Data definition language (DDL)  A collection of instructions and commands used to define and describe data and data relationships in a specific database  Allows the database’s creator to describe the data and the data relationships that are to be contained in the schema and subschemas  Data dictionary: a detailed description of all the data used in the database

12

13

14  When an application program request data from DBMS, the application program follows a logical access path  When the DBMS goes to a storage device to retrieve the requested data, it follows a path to the physical location (physical access path) where the data is stored

15  Data manipulation language (DML): the commands that are used to manipulate the data in a database  Structured Query Language (SQL): adopted by the American National Standards Institute (ANSI) as the standard query language for relational databases  Once a database has been set up and loaded with data, it can produce reports, documents, and other outputs

16

17  Popular DBMSs for end users include Microsoft’s Access and Corel’s Paradox  The complete database management software market includes databases by IBM, Oracle, and Microsoft  Examples of open-source database systems: PostgreSQL and MySQL  Many traditional database programs are now available on open-source operating systems

18  Important characteristics of databases to consider:  Size of the database  Number of concurrent users  Performance  The ability of the DBMS to be integrated with other systems  Features of the DBMS  Vendor considerations  Cost of the system

 TERIMA KASIH 