SlideShare ist ein Scribd-Unternehmen logo
1 von 21
Chapter 5




      Foundations of Business
       Intelligence: Databases
           and Information
              Management

5.1                        © 2007 by Prentice Hall
Essentials of Business Information Systems
                Chapter 5 Foundations of Business Intelligence: Databases and
                                  Information Management

                         The Database Approach to Data Management



• Database: a collection of related files containing records on
  people, places, or things
• Entities: anything I’m interested in keeping data about. It
  may be physical (car), conceptual (account), or event
  (accident)
• Attributes: characteristics I’m interested in an entity OR the
  important characteristics that define an entity
• Organizing data in a relational database: Tables include: fields,
      records, and key fields (primary key, secondary key, or foreign key)

• Establishing relationships (associations among tables)
5.2   • Entity-relationship diagram, normalization, join table© 2007 by Prentice Hall
Essentials of Business Information Systems
             Chapter 5 Foundations of Business Intelligence: Databases and
                               Information Management

                     The Database Approach to Data Management


                     A Relational Database Table




A relational database organizes data in the form of two-dimensional tables.
Illustrated here is a table for the entity SUPPLIER showing how it
represents the entity and its attributes. Supplier_Number is the key field.
5.3                                                               © 2007 by Prentice Hall
Relationships among Tables
                        of a Database
                                         BookNo      Title     Author
                                           1      IT Intro      Ali
                                           2       Adv IS      Ahm
  BwngNo    Date     BookNo   StdNo        3      Program       Sana
      111   2/1/11     3       44          4       DBMS        Samy
      112   3/3/11     2       55
                                                  primary keys
      113   5/3/11     3       55
                                                     secondary key
      114   8/4/11     2       33
                                          StdNo      Name      Address
                                           33       Omar       Somoha
primary key           foreign keys         44       Hasan      Roshdy
                                           55       Mona        Stanly
This is a Logical View of the Database     66       Maha      AboQeer

5.4                                                 © 2007 by Prentice Hall
Essentials of Business Information Systems
          Chapter 5 Foundations of Business Intelligence: Databases and
                            Information Management

                  The Database Approach to Data Management


            A Simple Entity-Relationship Diagram




      This diagram shows the relationship between the entities
         SUPPLIER and PART (1 Supplier has many Parts).
           It is called One to Many OR 1:M Relationship.
5.5                                                            © 2007 by Prentice Hall
Keys of Table

• Primary Key: a column (or more) includes unique
  values that can uniquely identify each row in a table. It
  is a unique identifier for a database record.
• Secondary Key: a key that is not a primary key, but for
  which an index is maintained and that may identify
  more than one record such as in case we don’t
  remember the student number as a primary key we use
  student name as a secondary key.
• Foreign Key: a column (or more) in one table that refers
  to another table as a relationship.
5.6                                           © 2007 by Prentice Hall
Essentials of Business Information Systems
           Chapter 5 Foundations of Business Intelligence: Databases and
                             Information Management

                          Database Management Systems


                                   DBMS
• A specific type of software for creating, storing,
  organizing, and accessing data from a database
• Separates the logical and physical views of the
  data
• Logical view: how end users view data
• Physical view: how data are actually structured
  and organized (sectors on a track on a HD)
• Examples of DBMS: Microsoft Access, DB2
  (IBM), Oracle Database, Microsoft SQL Server,
  MYSQL (OpenSource)
5.7                                                             © 2007 by Prentice Hall
Essentials of Business Information Systems
             Chapter 5 Foundations of Business Intelligence: Databases and
                               Information Management

                            Database Management Systems
                                                          Books Table
                 Operations of a Relational DBMS
      Borrowing Table a DBMS can do on a Database)
              (What



                                                        Students Table




DBMS Operations:
• (1) Select: creates a subset of records based on stated criteria.
• Example: Select students who live in Stanly from the Students Table.
5.8                                                               © 2007 by Prentice Hall
Essentials of Business Information Systems
                Chapter 5 Foundations of Business Intelligence: Databases and
                                  Information Management

                               Database Management Systems
                                                             Books Table
                   Operations of a Relational DBMS
        Borrowing Table a DBMS can do on a Database)
                (What



                                                           Students Table


DBMS Operations:
•   (2) Join: combines relational tables to present
    the user with more information than is available
    from individual tables.
•   Example: Join Borrowing Table with Students
    Table to show all borrowing dates by Mona.

5.9                                                                  © 2007 by Prentice Hall
Essentials of Business Information Systems
                Chapter 5 Foundations of Business Intelligence: Databases and
                                  Information Management

                               Database Management Systems
                                                             Books Table
                   Operations of a Relational DBMS
        Borrowing Table a DBMS can do on a Database)
                (What



                                                           Students Table


DBMS Operations:
•   (3) Project: creates a subset consisting of
    columns in a table.
•   Example: Project the addresses of students
    from Students Table to know how many
    students live in each district of Alexandria.

5.10                                                                 © 2007 by Prentice Hall
Essentials of Business Information Systems
                Chapter 5 Foundations of Business Intelligence: Databases and
                                  Information Management

                               Database Management Systems

      Capabilities of Database Management Systems
• Data definition (meaning of data items e.g. Nam: Name)
• Data dictionary (structure of DB ”tables, keys,
  relationships,…”)
• Structured query language (SQL) is the language of dealing with
  DBMSs as an end user or a program. It consists of:
       • Data Retrieval Language (DRL) is the language of querying and
         reporting, such as “Select * from Std;”
       • Data manipulation language (DML) is the language of changing,
         inserting and deleting data, such as “Update, Insert, Delete,…”
       • Data definition language (DDL) is the language of building the
         database components, such as “Create table, Delete Table,
         Restructured Table,..…”


5.11                                                                 © 2007 by Prentice Hall
Essentials of Business Information Systems
            Chapter 5 Foundations of Business Intelligence: Databases and
                              Information Management

                           Database Management Systems

       Capabilities of Database Management Systems
• Object-oriented databases (OODB):
• Data is stored as objects (special identity that has characteristic
  and behavior “student”)
• It can be interpreted (explanation) only using the methods and
  attributes specified by its class.




5.12                                                             © 2007 by Prentice Hall
OODB

• Entity = anything I’m interested in keeping data about. It may be
  physical (student), conceptual (account), or event (accident).
• Class (Set of attributes) = model or specifications of an entity
  (Student: ID, Name, Phone,…).
• Object = an instance (case or example) of a Class (Student1:
  225, Ali, 012223456,…).
• Method = behavior of object at a specific event.
• Attributes (Column) = characteristics I’m interested in an entity
  OR the important characteristics that define an entity.
• State = the values of object attributes at specific time.
5.13                                                   © 2007 by Prentice Hall
Essentials of Business Information Systems
              Chapter 5 Foundations of Business Intelligence: Databases and
                                Information Management

               Using Databases to Improve Business Performance and Decision Making


                             Data Warehouses
       • What is a data warehouse?
         • A database that stores current and historical data
           that may be of interest to decision makers. (layer of
           data accumulated over time to support analysis
           before decision.

       • Data marts
         • Subsets of data warehouses that are highly focused
           and isolated for a specific population of users


5.14                                                               © 2007 by Prentice Hall
Essentials of Business Information Systems
                 Chapter 5 Foundations of Business Intelligence: Databases and
                                   Information Management

                  Using Databases to Improve Business Performance and Decision Making


                     Components of a Data Warehouse
The data warehouse
extracts current and
historical data from multiple
operational systems inside
the organization.
These data are combined
with data from external
sources and reorganized
into a central database
designed for management
reporting and analysis DSS.
The information directory
provides users with
information about the data
available in the warehouse.
                                       Figure 5-13
5.15                                                                  © 2007 by Prentice Hall
Essentials of Business Information Systems
          Chapter 5 Foundations of Business Intelligence: Databases and
                            Information Management

           Using Databases to Improve Business Performance and Decision Making

                       Business Intelligence

A series of analytical
tools works with data
stored in databases to
find patterns and
insights for helping
managers and
employees make better
decisions to improve
organizational
performance.

5.16                                                           © 2007 by Prentice Hall
Essentials of Business Information Systems
                Chapter 5 Foundations of Business Intelligence: Databases and
                                  Information Management

                  Using Databases to Improve Business Performance and Decision Making


             Business Intelligence, Multidimensional Data
                     Analysis, and Data Mining
• Business Intelligence (BI): set of tools for consolidating
  (merge), analyzing, and providing access to large amounts of
  data to improve decision making. It includes Online Analytical
       Processing (OLAP), data mining (removal), and Predictive analysis.


• Online Analytical Processing (OLAP): is an approach to quickly answer
  multi-dimensional analytical queries. It gives answers to important queries
  for decision making such as: What are the cities of highest growth rate of
  milk products consumption in the last 10 years?



5.17                                                                 © 2007 by Prentice Hall
Essentials of Business Information Systems
                  Chapter 5 Foundations of Business Intelligence: Databases and
                                    Information Management

                   Using Databases to Improve Business Performance and Decision Making


              Business Intelligence, Multidimensional Data
                      Analysis, and Data Mining
• Data mining: is data processing using sophisticated data search
       capabilities and statistical algorithms to discover patterns and correlations in
       large preexisting historical databases or data-warehouses.
• Predictive analysis: includes study of:
        •   Associations (things happened together)
        •   Sequences (something happened after another)
        •   Classifications (things classified in categories)
        •   Clusters (things assembled together in something)
        •   Forecasts (things expected to happen after happening of others)


5.18                                                                   © 2007 by Prentice Hall
Essentials of Business Information Systems
               Chapter 5 Foundations of Business Intelligence: Databases and
                                 Information Management

                Using Databases to Improve Business Performance and Decision Making


                         Databases and the Web
• Firms use the Web to make information from their internal
  databases available to customers and partners
• Middleware (software running at the middle between the
  Web pages and the database servers) and other software
  make this possible
       • Database servers
       • CGI (Common Gate Interface)

• Web interfaces provide familiarity to users and savings
  over redesigning and rebuilding legacy systems
  (traditional old systems)
5.19                                                                © 2007 by Prentice Hall
Essentials of Business Information Systems
              Chapter 5 Foundations of Business Intelligence: Databases and
                                Information Management

                               Managing Data Resources


                 Establishing an Information Policy
       • An information policy states an organization’s
         rules for managing and storing information
       • Data administration is responsible for the specific
         policies and procedures through which data can be
         managed as a resource
       • Large organizations use a database design and
         management group to perform database
         administration


5.20                                                               © 2007 by Prentice Hall
Essentials of Business Information Systems
            Chapter 5 Foundations of Business Intelligence: Databases and
                              Information Management

                             Managing Data Resources


                         Ensuring Data Quality
• Poor data quality is a major obstacle to successful customer
  relationship management (CRM)
• Data quality problems can be caused by redundant and
  inconsistent data produced by multiple systems (in multiple not
  linked systems some may be updated and some may not)
• Data input errors are the cause of many data quality problems
  (they use check digits to improve the quality of data-entry)
• A data quality audit is a structured survey of the accuracy and
  completeness of data
• Data cleansing detects and corrects incorrect, incomplete,
  improperly formatted, and redundant data

5.21                                                             © 2007 by Prentice Hall

Weitere ähnliche Inhalte

Was ist angesagt?

Relational database revised
Relational database revisedRelational database revised
Relational database revised
mnodalo
 
PHP Roadshow - MySQL Database Essentials
PHP Roadshow - MySQL Database EssentialsPHP Roadshow - MySQL Database Essentials
PHP Roadshow - MySQL Database Essentials
Cherrie Ann Domingo
 
Database Design Process
Database Design ProcessDatabase Design Process
Database Design Process
mussawir20
 

Was ist angesagt? (20)

Chapter 6 Database SC025 2017/2018
Chapter 6 Database SC025 2017/2018Chapter 6 Database SC025 2017/2018
Chapter 6 Database SC025 2017/2018
 
Database concepts
Database conceptsDatabase concepts
Database concepts
 
Database Concepts and Components
Database Concepts and ComponentsDatabase Concepts and Components
Database Concepts and Components
 
Relational database revised
Relational database revisedRelational database revised
Relational database revised
 
Lect 30 dbms_fundamentals
Lect 30  dbms_fundamentalsLect 30  dbms_fundamentals
Lect 30 dbms_fundamentals
 
Database Part 2
Database Part 2Database Part 2
Database Part 2
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of Database
 
PHP Roadshow - MySQL Database Essentials
PHP Roadshow - MySQL Database EssentialsPHP Roadshow - MySQL Database Essentials
PHP Roadshow - MySQL Database Essentials
 
Unit 01 dbms
Unit 01 dbmsUnit 01 dbms
Unit 01 dbms
 
Fundamentals of Database Design
Fundamentals of Database DesignFundamentals of Database Design
Fundamentals of Database Design
 
overview of database concept
overview of database conceptoverview of database concept
overview of database concept
 
Database and types of database
Database and types of databaseDatabase and types of database
Database and types of database
 
Database Systems - Introduction to Database Design (Chapter 4/1)
Database Systems - Introduction to Database Design (Chapter 4/1)Database Systems - Introduction to Database Design (Chapter 4/1)
Database Systems - Introduction to Database Design (Chapter 4/1)
 
Database Design Process
Database Design ProcessDatabase Design Process
Database Design Process
 
DBMS
DBMSDBMS
DBMS
 
NORMALIZATION - BIS 1204: Data and Information Management I
NORMALIZATION - BIS 1204: Data and Information Management I NORMALIZATION - BIS 1204: Data and Information Management I
NORMALIZATION - BIS 1204: Data and Information Management I
 
11 Database Concepts
11 Database Concepts11 Database Concepts
11 Database Concepts
 
database management system (DBMS)
database management system (DBMS)database management system (DBMS)
database management system (DBMS)
 
Physical Design and Development
Physical Design and DevelopmentPhysical Design and Development
Physical Design and Development
 

Andere mochten auch (13)

Laudon ess10e spp_8
Laudon ess10e spp_8Laudon ess10e spp_8
Laudon ess10e spp_8
 
Laudon Ch10
Laudon Ch10Laudon Ch10
Laudon Ch10
 
Business information systems in your career
Business information systems in your careerBusiness information systems in your career
Business information systems in your career
 
Laudon mis14 ch01
Laudon mis14 ch01Laudon mis14 ch01
Laudon mis14 ch01
 
Management Information System
Management Information SystemManagement Information System
Management Information System
 
Securing information systems
Securing information systemsSecuring information systems
Securing information systems
 
Business intelligence databases and information management
Business intelligence databases and information managementBusiness intelligence databases and information management
Business intelligence databases and information management
 
Telecommunications, the internet, and wireless technology
Telecommunications, the internet, and wireless technologyTelecommunications, the internet, and wireless technology
Telecommunications, the internet, and wireless technology
 
Mis9 ch03 ppt (2)
Mis9 ch03 ppt (2)Mis9 ch03 ppt (2)
Mis9 ch03 ppt (2)
 
Achieving competitive advantage with information systems
Achieving competitive advantage with information systemsAchieving competitive advantage with information systems
Achieving competitive advantage with information systems
 
E-commerce, digital markets, and digital goods
E-commerce, digital markets, and digital goodsE-commerce, digital markets, and digital goods
E-commerce, digital markets, and digital goods
 
Laudon mis12 ppt01
Laudon mis12 ppt01Laudon mis12 ppt01
Laudon mis12 ppt01
 
It infrastructure hardware and software
It infrastructure hardware and softwareIt infrastructure hardware and software
It infrastructure hardware and software
 

Ähnlich wie Chapter 5

Chapter 5 data processing
Chapter 5 data processingChapter 5 data processing
Chapter 5 data processing
UMaine
 
Data base management system
Data base management systemData base management system
Data base management system
Navneet Jingar
 
Info systems databases
Info systems databasesInfo systems databases
Info systems databases
MR Z
 

Ähnlich wie Chapter 5 (20)

Case mis ch05
Case mis ch05Case mis ch05
Case mis ch05
 
Dbms9
Dbms9Dbms9
Dbms9
 
DBMS introduction
DBMS introductionDBMS introduction
DBMS introduction
 
Database systems introduction
Database systems introductionDatabase systems introduction
Database systems introduction
 
Database management system
Database management systemDatabase management system
Database management system
 
Chapter 5 data processing
Chapter 5 data processingChapter 5 data processing
Chapter 5 data processing
 
Database systems Handbook 2V.pdf
Database systems Handbook 2V.pdfDatabase systems Handbook 2V.pdf
Database systems Handbook 2V.pdf
 
7 - Enterprise IT in Action
7 - Enterprise IT in Action7 - Enterprise IT in Action
7 - Enterprise IT in Action
 
Data base management system
Data base management systemData base management system
Data base management system
 
Week 5
Week 5Week 5
Week 5
 
Week 5
Week 5Week 5
Week 5
 
Info systems databases
Info systems databasesInfo systems databases
Info systems databases
 
Database systems Handbook.pdf
Database systems Handbook.pdfDatabase systems Handbook.pdf
Database systems Handbook.pdf
 
Database systems Handbook.pdf
Database systems Handbook.pdfDatabase systems Handbook.pdf
Database systems Handbook.pdf
 
Database systems Handbook dbms.pdf
Database systems Handbook dbms.pdfDatabase systems Handbook dbms.pdf
Database systems Handbook dbms.pdf
 
Database systems Handbook dbms.pdf
Database systems Handbook dbms.pdfDatabase systems Handbook dbms.pdf
Database systems Handbook dbms.pdf
 
Database systems Handbook dbms.pdf
Database systems Handbook dbms.pdfDatabase systems Handbook dbms.pdf
Database systems Handbook dbms.pdf
 
IS L03 - Database Management
IS L03 - Database ManagementIS L03 - Database Management
IS L03 - Database Management
 
23246406 dbms-unit-1
23246406 dbms-unit-123246406 dbms-unit-1
23246406 dbms-unit-1
 
MIS-3rd Unit.pptx
MIS-3rd Unit.pptxMIS-3rd Unit.pptx
MIS-3rd Unit.pptx
 

Chapter 5

  • 1. Chapter 5 Foundations of Business Intelligence: Databases and Information Management 5.1 © 2007 by Prentice Hall
  • 2. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management The Database Approach to Data Management • Database: a collection of related files containing records on people, places, or things • Entities: anything I’m interested in keeping data about. It may be physical (car), conceptual (account), or event (accident) • Attributes: characteristics I’m interested in an entity OR the important characteristics that define an entity • Organizing data in a relational database: Tables include: fields, records, and key fields (primary key, secondary key, or foreign key) • Establishing relationships (associations among tables) 5.2 • Entity-relationship diagram, normalization, join table© 2007 by Prentice Hall
  • 3. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management The Database Approach to Data Management A Relational Database Table A relational database organizes data in the form of two-dimensional tables. Illustrated here is a table for the entity SUPPLIER showing how it represents the entity and its attributes. Supplier_Number is the key field. 5.3 © 2007 by Prentice Hall
  • 4. Relationships among Tables of a Database BookNo Title Author 1 IT Intro Ali 2 Adv IS Ahm BwngNo Date BookNo StdNo 3 Program Sana 111 2/1/11 3 44 4 DBMS Samy 112 3/3/11 2 55 primary keys 113 5/3/11 3 55 secondary key 114 8/4/11 2 33 StdNo Name Address 33 Omar Somoha primary key foreign keys 44 Hasan Roshdy 55 Mona Stanly This is a Logical View of the Database 66 Maha AboQeer 5.4 © 2007 by Prentice Hall
  • 5. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management The Database Approach to Data Management A Simple Entity-Relationship Diagram This diagram shows the relationship between the entities SUPPLIER and PART (1 Supplier has many Parts). It is called One to Many OR 1:M Relationship. 5.5 © 2007 by Prentice Hall
  • 6. Keys of Table • Primary Key: a column (or more) includes unique values that can uniquely identify each row in a table. It is a unique identifier for a database record. • Secondary Key: a key that is not a primary key, but for which an index is maintained and that may identify more than one record such as in case we don’t remember the student number as a primary key we use student name as a secondary key. • Foreign Key: a column (or more) in one table that refers to another table as a relationship. 5.6 © 2007 by Prentice Hall
  • 7. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Database Management Systems DBMS • A specific type of software for creating, storing, organizing, and accessing data from a database • Separates the logical and physical views of the data • Logical view: how end users view data • Physical view: how data are actually structured and organized (sectors on a track on a HD) • Examples of DBMS: Microsoft Access, DB2 (IBM), Oracle Database, Microsoft SQL Server, MYSQL (OpenSource) 5.7 © 2007 by Prentice Hall
  • 8. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Database Management Systems Books Table Operations of a Relational DBMS Borrowing Table a DBMS can do on a Database) (What Students Table DBMS Operations: • (1) Select: creates a subset of records based on stated criteria. • Example: Select students who live in Stanly from the Students Table. 5.8 © 2007 by Prentice Hall
  • 9. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Database Management Systems Books Table Operations of a Relational DBMS Borrowing Table a DBMS can do on a Database) (What Students Table DBMS Operations: • (2) Join: combines relational tables to present the user with more information than is available from individual tables. • Example: Join Borrowing Table with Students Table to show all borrowing dates by Mona. 5.9 © 2007 by Prentice Hall
  • 10. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Database Management Systems Books Table Operations of a Relational DBMS Borrowing Table a DBMS can do on a Database) (What Students Table DBMS Operations: • (3) Project: creates a subset consisting of columns in a table. • Example: Project the addresses of students from Students Table to know how many students live in each district of Alexandria. 5.10 © 2007 by Prentice Hall
  • 11. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Database Management Systems Capabilities of Database Management Systems • Data definition (meaning of data items e.g. Nam: Name) • Data dictionary (structure of DB ”tables, keys, relationships,…”) • Structured query language (SQL) is the language of dealing with DBMSs as an end user or a program. It consists of: • Data Retrieval Language (DRL) is the language of querying and reporting, such as “Select * from Std;” • Data manipulation language (DML) is the language of changing, inserting and deleting data, such as “Update, Insert, Delete,…” • Data definition language (DDL) is the language of building the database components, such as “Create table, Delete Table, Restructured Table,..…” 5.11 © 2007 by Prentice Hall
  • 12. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Database Management Systems Capabilities of Database Management Systems • Object-oriented databases (OODB): • Data is stored as objects (special identity that has characteristic and behavior “student”) • It can be interpreted (explanation) only using the methods and attributes specified by its class. 5.12 © 2007 by Prentice Hall
  • 13. OODB • Entity = anything I’m interested in keeping data about. It may be physical (student), conceptual (account), or event (accident). • Class (Set of attributes) = model or specifications of an entity (Student: ID, Name, Phone,…). • Object = an instance (case or example) of a Class (Student1: 225, Ali, 012223456,…). • Method = behavior of object at a specific event. • Attributes (Column) = characteristics I’m interested in an entity OR the important characteristics that define an entity. • State = the values of object attributes at specific time. 5.13 © 2007 by Prentice Hall
  • 14. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Using Databases to Improve Business Performance and Decision Making Data Warehouses • What is a data warehouse? • A database that stores current and historical data that may be of interest to decision makers. (layer of data accumulated over time to support analysis before decision. • Data marts • Subsets of data warehouses that are highly focused and isolated for a specific population of users 5.14 © 2007 by Prentice Hall
  • 15. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Using Databases to Improve Business Performance and Decision Making Components of a Data Warehouse The data warehouse extracts current and historical data from multiple operational systems inside the organization. These data are combined with data from external sources and reorganized into a central database designed for management reporting and analysis DSS. The information directory provides users with information about the data available in the warehouse. Figure 5-13 5.15 © 2007 by Prentice Hall
  • 16. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Using Databases to Improve Business Performance and Decision Making Business Intelligence A series of analytical tools works with data stored in databases to find patterns and insights for helping managers and employees make better decisions to improve organizational performance. 5.16 © 2007 by Prentice Hall
  • 17. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Using Databases to Improve Business Performance and Decision Making Business Intelligence, Multidimensional Data Analysis, and Data Mining • Business Intelligence (BI): set of tools for consolidating (merge), analyzing, and providing access to large amounts of data to improve decision making. It includes Online Analytical Processing (OLAP), data mining (removal), and Predictive analysis. • Online Analytical Processing (OLAP): is an approach to quickly answer multi-dimensional analytical queries. It gives answers to important queries for decision making such as: What are the cities of highest growth rate of milk products consumption in the last 10 years? 5.17 © 2007 by Prentice Hall
  • 18. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Using Databases to Improve Business Performance and Decision Making Business Intelligence, Multidimensional Data Analysis, and Data Mining • Data mining: is data processing using sophisticated data search capabilities and statistical algorithms to discover patterns and correlations in large preexisting historical databases or data-warehouses. • Predictive analysis: includes study of: • Associations (things happened together) • Sequences (something happened after another) • Classifications (things classified in categories) • Clusters (things assembled together in something) • Forecasts (things expected to happen after happening of others) 5.18 © 2007 by Prentice Hall
  • 19. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Using Databases to Improve Business Performance and Decision Making Databases and the Web • Firms use the Web to make information from their internal databases available to customers and partners • Middleware (software running at the middle between the Web pages and the database servers) and other software make this possible • Database servers • CGI (Common Gate Interface) • Web interfaces provide familiarity to users and savings over redesigning and rebuilding legacy systems (traditional old systems) 5.19 © 2007 by Prentice Hall
  • 20. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Managing Data Resources Establishing an Information Policy • An information policy states an organization’s rules for managing and storing information • Data administration is responsible for the specific policies and procedures through which data can be managed as a resource • Large organizations use a database design and management group to perform database administration 5.20 © 2007 by Prentice Hall
  • 21. Essentials of Business Information Systems Chapter 5 Foundations of Business Intelligence: Databases and Information Management Managing Data Resources Ensuring Data Quality • Poor data quality is a major obstacle to successful customer relationship management (CRM) • Data quality problems can be caused by redundant and inconsistent data produced by multiple systems (in multiple not linked systems some may be updated and some may not) • Data input errors are the cause of many data quality problems (they use check digits to improve the quality of data-entry) • A data quality audit is a structured survey of the accuracy and completeness of data • Data cleansing detects and corrects incorrect, incomplete, improperly formatted, and redundant data 5.21 © 2007 by Prentice Hall