SlideShare une entreprise Scribd logo
1  sur  35
File Processing Systems
                Billing                                   Purchasing
               Program                                     Program




                       Accounts                 Buyer          Inventory   Vendor
    Customer
                      receivable                 file             file      file
      file
                         file




  Accounts_Payable                  Sales Order Processing                          Payroll
      Program                              Program                                  Program




                                                   Inventory                        Employee
Vendor           Invoice           Customer
                                                      file                            file
 file              file              file
Database Approach
Order Dept.                 Accounting               Payroll
                              Dept.                   Dept.




 Program                    Program                  Program

     A                         B                        C




Ordering
                            Invoicing                Payroll
 filing
                             System                  System
System




    Back        Inventory     Customer   Inventory      Employee
   Orders         Master       Master     Pricing        Master
     file          file          file       file          file
Database vs. File-based


     • Miniworld as data source
        – Universe of Discourse (UOD)
     • Logically integrated files
     • Intended users and applications
     • Shared and Self-describing

   Compared with file-based approach:
     - program-data independence
     - multiple view of data
     - multi-user transaction processing
Types of Databases and
     Database Applications
• Numeric and Textual Databases (e.g. IRS
  CADE)
• Multimedia Databases (e.g. Cortina)
• Geographic Information Systems (GIS)
• Data Warehouses
• Real-time and Active Databases
Basic Definitions
• Database: A collection of related data.
• Data: Known facts that can be recorded and
  have an implicit meaning.
• Mini-world: Some part of the real world about
  which data is stored in a database. For example,
  student grades and transcripts at a university.
• Database Management System (DBMS): A
  collection of software to facilitate the creation
  and maintenance of a DB.
• Database System: The DBMS software
  together with the data. Sometimes, applications
  are also included.
Database System Environment
                   Users/Programmers

              Application Programs/Queries


 DBMS
 Software Software to Process Queries/Programs


             Software to Access Stored Data



      Stored DB
                                        Stored
      Definition
                                       Database
     (Meta-Data)
Why the Database Approach?
• Application needs constantly changing
• Ad hoc questions need rapid answers
• Need to reduce long lead times and high
  cost in new application development
• Lots of data shared throughout the
  organization
• Need to improve data consistency and
  control access to data
• Substantial dedicated programming
  assistance typically not available
Core DB Technology Trend
•   Relational Database
•   Distributed Database
•   Multi-dimensional databases
•   Object Relational Database
•   Object-Oriented Database
•   Multimedia Database
•   Intelligent Database
•   Data warehousing, data marts, data mining
•   Web-based Databases
DB Time Line                                         Web-based
                                                       Data Warehousing
                                                           Client-server



                                                 multimedia
                                                heterogeneous
Data Management                               object-oriented
                                            expert, distributed
Capability
                                           SQL Standard
                                        commercial DBMS
                                      PC DBMS
                                ER model
                             network model
                        Relational Model: Codd
                    Hierarchical: IMS
               file management
   magnetic tape
 1945       1961      1970    1976 1980 1985    1990       2000
DBMS
• A collection of software
  – manage different applications for a multi-user
    database system
  – enable users to define/create and manipulate
    data
• Basic functions:
  –   multiple user interfaces
  –   controlled redundancy
  –   integrity control
  –   security: authorization & protection
  –   concurrency & recovery control
Example Database (with
       Conceptual Data Model)
• Mini-world for the example: Part of a
  UNIVERSITY environment.
• Some mini-world entities:
   –   STUDENTs
   –   COURSEs
   –   SECTIONs (of COURSEs)
   –   (academic) DEPARTMENTs
   –   INSTRUCTORs
Note: The above could be expressed in the
  ENTITY-RELATIONSHIP data model.
Example Database (with
  Conceptual Data Model) – 2.
• Some mini-world relationships:
   –   SECTIONs are of specific COURSEs
   –   STUDENTs take SECTIONs
   –   COURSEs have prerequisite COURSEs
   –   INSTRUCTORs teach SECTIONs
   –   COURSEs are offered by DEPARTMENTs
   –   STUDENTs major in DEPARTMENTs

Note: The above could be expressed in the
  ENTITY-RELATIONSHIP data model.
Example E-R Model
Relational Logical Schema
         Example
Example Relational Database
        Snapshot
Features of the E-R Model
• Relationships are just as important as entities—
  they are data that need to be stored in the DB
• Most relationships are binary, but they may be
  ternary (or more!) as well
• Questions:
   – What is the relationship between three binary
     relationships and a ternary relationship?
   – Why are there two relationships between projects
     and employees?
Main Characteristics of the
       Database Approach
• Self-describing nature of a database system:
  A DBMS catalog stores the description of
  the database. The description is called meta-
  data). This allows the DBMS software to
  work with different databases.
• Insulation between programs and data:
  Called program-data independence. Allows
  changing data storage structures and
  operations without having to change the
  DBMS access programs.
Main Characteristics of the
     Database Approach – 2
• Data Abstraction: A data model is used to
  hide storage details and present the users
  with a conceptual view of the database.
• Support of multiple views of the data: Each
  user may see a different view of the
  database, which describes only the data of
  interest to that user.
Main Characteristics of the
     Database Approach – 3.
• Sharing of data and multi-user transaction
  processing: allowing a set of concurrent users to
  retrieve and to update the database.
• Concurrency control within the DBMS
  guarantees that each transaction is correctly
  executed or completely aborted.
• OLTP (Online Transaction Processing) is a
  major part of database applications.
Database Users
Users may be divided into:
• those who actually use and control the
  content (called “Actors on the Scene”)
• those who enable the database to be
  developed and the DBMS software to be
  designed and implemented (called
  “Workers Behind the Scene”).
Database Users – 2.
• Actors
  – Database administrators: responsible for
    access to the database, for coordinating and
    monitoring its use, acquiring
    software/hardware resources, controlling its
    use and monitoring run-time performance.
  – Database Designers: responsible to define
    the content, structure, constraints, and
    functions or transactions against the database.
    They communicate with the end-users and
    understand their needs.
  – End-users: use the data for queries, reports
    and some even update database content.
Other DBS Personnel
• System analysts and application
  programmers
• Operators and maintenance personnel
• Tool developers
• DBMS Designers and Programmers
Advantages of Using the
          Database Approach
•   More information from given data
•   Ad hoc queries can be performed
•   Redundancy can be reduced
•   Inconsistency can be avoided
•   Security restriction can be applied
•   Data independence
    –   more cost-effective: reduced development
        time, flexibility, economies of scale
Advantages of Using the
      Database Approach - 2
• Controlling redundancy in data storage
  and in development and maintenance.
• Sharing of data among multiple users.
• Providing persistent storage for program
  objects (in Object-oriented DBMS’s – see
  Chs. 20-22)
• Providing storage structures for efficient
  query processing
Advantages of Using the
     Database Approach – 3.
• Providing backup and recovery services.
• Providing multiple interfaces to different
  classes of users.
• Representing complex relationships
  among data.
• Enforcing integrity constraints on the
  database.
• Drawing Inferences and Actions using
  rules
Disadvantages of Using the
      Database Approach
• Expensive
  – hardware, software, personnel, processing
    overhead, operating cost , etc.
• DBMS generality & overhead
  => performance issue
• Increased vulnerability to failure
• Recovery is more complex
        When should you not use a DBMS????
Additional Implications of the
     Database Approach
• Potential for enforcing standards:
   – crucial for the success of database applications
     in large organizations
   – standards refer to data item names, display
     formats, screens, report structures, meta-data
     (description of data) etc.
• Reduced application development time:
   – incremental time to add each new application is
     reduced.
Additional Implications of the
   Database Approach – 2.
• Flexibility to change data structures:
  database structure may evolve as new
  requirements are defined.
• Availability of up-to-date information: very
  important for on-line transaction systems
  such as airline, hotel, car reservations.
• Economies of scale: by consolidating data
  and applications across departments
  wasteful overlap of resources and
  personnel can be avoided.
Historical Development of
     Database Technology
• Early Database Applications:
  Hierarchical and Network Models were
  introduced in mid 1960s and dominated
  the 70s. A bulk of the worldwide database
  processing still uses these models.
• Relational Model based systems:
  originally introduced in 1970 this model
  was heavily researched and experimented
  with in IBM and universities. Relational
  DBMS products emerged in the 1980s.
Historical Development of
    Database Technology – 2.
• Object-oriented applications:
  OODBMSs were introduced in late 1980s
  and early 1990s to cater to the need of
  complex data processing in CAD and
  other applications. Their use is not large.
• Data on the Web and E-commerce
  Applications: Web contains data in
  HTML with links among pages. E-
  commerce is using standards like XML
  (eXtended Markup Language).
Extending Database
               Capabilities
• New functionality is being added to DBMSs in
  the following areas:
   –   Scientific Applications
   –   Image Storage and Management
   –   Audio and Video data management
   –   Data Mining
   –   Spatial data management
   –   Time Series and Historical Data Management
• The above gives rise to new research and
  development in incorporating new data types,
  complex data structures, new operations and
  indexing schemes in database systems.
When NOT to use a DBMS
• Main inhibitors (costs) of using a DBMS:
  – High initial investment and possible need for
    additional hardware.
  – Overhead for providing generality, security,
    concurrency control, recovery, and integrity
    functions.
• When a DBMS may be unnecessary:
  – If the database and applications are simple, well
    defined, and not expected to change.
  – If there are stringent real-time requirements that
    may not be met because of DBMS overhead.
  – If access to data by multiple users is not
    required.
When NOT to use a DBMS – 2.
• When no DBMS may suffice:
  – If the database system is not able to handle
    the complexity of data because of modeling
    limitations
  – If the database users need special operations
    not supported by the DBMS.
System Overview

         OLCP
On-Line Complex Processing      EIS
                                                       OLAP
       data mining &                        On-Line Analytical Processing
   knowledge discovery                           Data Warehousing
                                                     Data Marts
                                DSS


                                DP




                              OLTP
                   On-line Transaction Processing
                      Operational databases
                          Legacy systems

Contenu connexe

Tendances

Webinar file-director-unencrypted
Webinar file-director-unencryptedWebinar file-director-unencrypted
Webinar file-director-unencryptedIvanti
 
Xldb2011 tue 1005_linked_in
Xldb2011 tue 1005_linked_inXldb2011 tue 1005_linked_in
Xldb2011 tue 1005_linked_inliqiang xu
 
Discovering Computers: Chapter 10
Discovering Computers: Chapter 10Discovering Computers: Chapter 10
Discovering Computers: Chapter 10Anna Stirling
 
Kuali update v4 - mw
Kuali update   v4 - mwKuali update   v4 - mw
Kuali update v4 - mwsarnoa
 
Database Administrator - Job Scope
Database Administrator - Job ScopeDatabase Administrator - Job Scope
Database Administrator - Job ScopeCacheWorks©
 
zahidCvFinal(Updated Jan 17)-2
zahidCvFinal(Updated Jan 17)-2zahidCvFinal(Updated Jan 17)-2
zahidCvFinal(Updated Jan 17)-2Zahid Ayub
 
Impact of in-memory technology and SAP HANA on your business, IT, and career
Impact of in-memory technology and SAP HANA on your business, IT, and careerImpact of in-memory technology and SAP HANA on your business, IT, and career
Impact of in-memory technology and SAP HANA on your business, IT, and careerVitaliy Rudnytskiy
 
Caars Product Overview
Caars Product OverviewCaars Product Overview
Caars Product Overviewguest3b2469
 
Aras Vision and Roadmap with Aras Innovator PLM Software
Aras Vision and Roadmap with Aras Innovator PLM SoftwareAras Vision and Roadmap with Aras Innovator PLM Software
Aras Vision and Roadmap with Aras Innovator PLM SoftwareAras
 
Ibm total storage san file system as an infrastructure for multimedia servers...
Ibm total storage san file system as an infrastructure for multimedia servers...Ibm total storage san file system as an infrastructure for multimedia servers...
Ibm total storage san file system as an infrastructure for multimedia servers...Banking at Ho Chi Minh city
 
HCLT Brochure: E-Discovery and Document Review Solutions
HCLT Brochure: E-Discovery and Document Review SolutionsHCLT Brochure: E-Discovery and Document Review Solutions
HCLT Brochure: E-Discovery and Document Review SolutionsHCL Technologies
 
A Hybrid Technology Platform for Increasing the Speed of Operational Analytics
A Hybrid Technology Platform for Increasing the Speed of Operational AnalyticsA Hybrid Technology Platform for Increasing the Speed of Operational Analytics
A Hybrid Technology Platform for Increasing the Speed of Operational AnalyticsIBMGovernmentCA
 
964 database development process intro1
964 database development process intro1964 database development process intro1
964 database development process intro1Snovia
 
Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)Vitaliy Rudnytskiy
 

Tendances (15)

Webinar file-director-unencrypted
Webinar file-director-unencryptedWebinar file-director-unencrypted
Webinar file-director-unencrypted
 
Xldb2011 tue 1005_linked_in
Xldb2011 tue 1005_linked_inXldb2011 tue 1005_linked_in
Xldb2011 tue 1005_linked_in
 
Discovering Computers: Chapter 10
Discovering Computers: Chapter 10Discovering Computers: Chapter 10
Discovering Computers: Chapter 10
 
Kuali update v4 - mw
Kuali update   v4 - mwKuali update   v4 - mw
Kuali update v4 - mw
 
Database Administrator - Job Scope
Database Administrator - Job ScopeDatabase Administrator - Job Scope
Database Administrator - Job Scope
 
zahidCvFinal(Updated Jan 17)-2
zahidCvFinal(Updated Jan 17)-2zahidCvFinal(Updated Jan 17)-2
zahidCvFinal(Updated Jan 17)-2
 
Impact of in-memory technology and SAP HANA on your business, IT, and career
Impact of in-memory technology and SAP HANA on your business, IT, and careerImpact of in-memory technology and SAP HANA on your business, IT, and career
Impact of in-memory technology and SAP HANA on your business, IT, and career
 
Caars Product Overview
Caars Product OverviewCaars Product Overview
Caars Product Overview
 
Aras Vision and Roadmap with Aras Innovator PLM Software
Aras Vision and Roadmap with Aras Innovator PLM SoftwareAras Vision and Roadmap with Aras Innovator PLM Software
Aras Vision and Roadmap with Aras Innovator PLM Software
 
Ibm total storage san file system as an infrastructure for multimedia servers...
Ibm total storage san file system as an infrastructure for multimedia servers...Ibm total storage san file system as an infrastructure for multimedia servers...
Ibm total storage san file system as an infrastructure for multimedia servers...
 
Oracle Data Warehouse
Oracle Data WarehouseOracle Data Warehouse
Oracle Data Warehouse
 
HCLT Brochure: E-Discovery and Document Review Solutions
HCLT Brochure: E-Discovery and Document Review SolutionsHCLT Brochure: E-Discovery and Document Review Solutions
HCLT Brochure: E-Discovery and Document Review Solutions
 
A Hybrid Technology Platform for Increasing the Speed of Operational Analytics
A Hybrid Technology Platform for Increasing the Speed of Operational AnalyticsA Hybrid Technology Platform for Increasing the Speed of Operational Analytics
A Hybrid Technology Platform for Increasing the Speed of Operational Analytics
 
964 database development process intro1
964 database development process intro1964 database development process intro1
964 database development process intro1
 
Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)
 

Similaire à 354 ch1 (20)

DBMS
DBMSDBMS
DBMS
 
Lecture-1.ppt
Lecture-1.pptLecture-1.ppt
Lecture-1.ppt
 
PHP/MySQL First Session Material
PHP/MySQL First Session MaterialPHP/MySQL First Session Material
PHP/MySQL First Session Material
 
Session1
Session1Session1
Session1
 
Unit1 dbms
Unit1 dbmsUnit1 dbms
Unit1 dbms
 
Beginning Of DBMS (data base)
Beginning Of DBMS (data base)Beginning Of DBMS (data base)
Beginning Of DBMS (data base)
 
DBMS Lecture 1.ppt
DBMS Lecture 1.pptDBMS Lecture 1.ppt
DBMS Lecture 1.ppt
 
Dbms and it infrastructure
Dbms and  it infrastructureDbms and  it infrastructure
Dbms and it infrastructure
 
Database & Database Users
Database & Database UsersDatabase & Database Users
Database & Database Users
 
Introduction to RDBMS
Introduction to RDBMSIntroduction to RDBMS
Introduction to RDBMS
 
Management information system database management
Management information system database managementManagement information system database management
Management information system database management
 
1. intro
1. intro1. intro
1. intro
 
2ndlec.database
2ndlec.database2ndlec.database
2ndlec.database
 
Database system
Database systemDatabase system
Database system
 
Unit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 CompleteUnit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 Complete
 
(Dbms) class 1 & 2 (Presentation)
(Dbms) class 1 & 2 (Presentation)(Dbms) class 1 & 2 (Presentation)
(Dbms) class 1 & 2 (Presentation)
 
DB_Lec_1 and 2.pptx
DB_Lec_1 and 2.pptxDB_Lec_1 and 2.pptx
DB_Lec_1 and 2.pptx
 
Dbms
DbmsDbms
Dbms
 
Cp 121 lecture 01
Cp 121 lecture 01Cp 121 lecture 01
Cp 121 lecture 01
 
CS3270 - DATABASE SYSTEM - Lecture (1)
CS3270 - DATABASE SYSTEM -  Lecture (1)CS3270 - DATABASE SYSTEM -  Lecture (1)
CS3270 - DATABASE SYSTEM - Lecture (1)
 

354 ch1

  • 1. File Processing Systems Billing Purchasing Program Program Accounts Buyer Inventory Vendor Customer receivable file file file file file Accounts_Payable Sales Order Processing Payroll Program Program Program Inventory Employee Vendor Invoice Customer file file file file file
  • 2. Database Approach Order Dept. Accounting Payroll Dept. Dept. Program Program Program A B C Ordering Invoicing Payroll filing System System System Back Inventory Customer Inventory Employee Orders Master Master Pricing Master file file file file file
  • 3. Database vs. File-based • Miniworld as data source – Universe of Discourse (UOD) • Logically integrated files • Intended users and applications • Shared and Self-describing Compared with file-based approach: - program-data independence - multiple view of data - multi-user transaction processing
  • 4. Types of Databases and Database Applications • Numeric and Textual Databases (e.g. IRS CADE) • Multimedia Databases (e.g. Cortina) • Geographic Information Systems (GIS) • Data Warehouses • Real-time and Active Databases
  • 5. Basic Definitions • Database: A collection of related data. • Data: Known facts that can be recorded and have an implicit meaning. • Mini-world: Some part of the real world about which data is stored in a database. For example, student grades and transcripts at a university. • Database Management System (DBMS): A collection of software to facilitate the creation and maintenance of a DB. • Database System: The DBMS software together with the data. Sometimes, applications are also included.
  • 6. Database System Environment Users/Programmers Application Programs/Queries DBMS Software Software to Process Queries/Programs Software to Access Stored Data Stored DB Stored Definition Database (Meta-Data)
  • 7. Why the Database Approach? • Application needs constantly changing • Ad hoc questions need rapid answers • Need to reduce long lead times and high cost in new application development • Lots of data shared throughout the organization • Need to improve data consistency and control access to data • Substantial dedicated programming assistance typically not available
  • 8. Core DB Technology Trend • Relational Database • Distributed Database • Multi-dimensional databases • Object Relational Database • Object-Oriented Database • Multimedia Database • Intelligent Database • Data warehousing, data marts, data mining • Web-based Databases
  • 9. DB Time Line Web-based Data Warehousing Client-server multimedia heterogeneous Data Management object-oriented expert, distributed Capability SQL Standard commercial DBMS PC DBMS ER model network model Relational Model: Codd Hierarchical: IMS file management magnetic tape 1945 1961 1970 1976 1980 1985 1990 2000
  • 10. DBMS • A collection of software – manage different applications for a multi-user database system – enable users to define/create and manipulate data • Basic functions: – multiple user interfaces – controlled redundancy – integrity control – security: authorization & protection – concurrency & recovery control
  • 11. Example Database (with Conceptual Data Model) • Mini-world for the example: Part of a UNIVERSITY environment. • Some mini-world entities: – STUDENTs – COURSEs – SECTIONs (of COURSEs) – (academic) DEPARTMENTs – INSTRUCTORs Note: The above could be expressed in the ENTITY-RELATIONSHIP data model.
  • 12. Example Database (with Conceptual Data Model) – 2. • Some mini-world relationships: – SECTIONs are of specific COURSEs – STUDENTs take SECTIONs – COURSEs have prerequisite COURSEs – INSTRUCTORs teach SECTIONs – COURSEs are offered by DEPARTMENTs – STUDENTs major in DEPARTMENTs Note: The above could be expressed in the ENTITY-RELATIONSHIP data model.
  • 13.
  • 17. Features of the E-R Model • Relationships are just as important as entities— they are data that need to be stored in the DB • Most relationships are binary, but they may be ternary (or more!) as well • Questions: – What is the relationship between three binary relationships and a ternary relationship? – Why are there two relationships between projects and employees?
  • 18. Main Characteristics of the Database Approach • Self-describing nature of a database system: A DBMS catalog stores the description of the database. The description is called meta- data). This allows the DBMS software to work with different databases. • Insulation between programs and data: Called program-data independence. Allows changing data storage structures and operations without having to change the DBMS access programs.
  • 19. Main Characteristics of the Database Approach – 2 • Data Abstraction: A data model is used to hide storage details and present the users with a conceptual view of the database. • Support of multiple views of the data: Each user may see a different view of the database, which describes only the data of interest to that user.
  • 20. Main Characteristics of the Database Approach – 3. • Sharing of data and multi-user transaction processing: allowing a set of concurrent users to retrieve and to update the database. • Concurrency control within the DBMS guarantees that each transaction is correctly executed or completely aborted. • OLTP (Online Transaction Processing) is a major part of database applications.
  • 21. Database Users Users may be divided into: • those who actually use and control the content (called “Actors on the Scene”) • those who enable the database to be developed and the DBMS software to be designed and implemented (called “Workers Behind the Scene”).
  • 22. Database Users – 2. • Actors – Database administrators: responsible for access to the database, for coordinating and monitoring its use, acquiring software/hardware resources, controlling its use and monitoring run-time performance. – Database Designers: responsible to define the content, structure, constraints, and functions or transactions against the database. They communicate with the end-users and understand their needs. – End-users: use the data for queries, reports and some even update database content.
  • 23. Other DBS Personnel • System analysts and application programmers • Operators and maintenance personnel • Tool developers • DBMS Designers and Programmers
  • 24. Advantages of Using the Database Approach • More information from given data • Ad hoc queries can be performed • Redundancy can be reduced • Inconsistency can be avoided • Security restriction can be applied • Data independence – more cost-effective: reduced development time, flexibility, economies of scale
  • 25. Advantages of Using the Database Approach - 2 • Controlling redundancy in data storage and in development and maintenance. • Sharing of data among multiple users. • Providing persistent storage for program objects (in Object-oriented DBMS’s – see Chs. 20-22) • Providing storage structures for efficient query processing
  • 26. Advantages of Using the Database Approach – 3. • Providing backup and recovery services. • Providing multiple interfaces to different classes of users. • Representing complex relationships among data. • Enforcing integrity constraints on the database. • Drawing Inferences and Actions using rules
  • 27. Disadvantages of Using the Database Approach • Expensive – hardware, software, personnel, processing overhead, operating cost , etc. • DBMS generality & overhead => performance issue • Increased vulnerability to failure • Recovery is more complex When should you not use a DBMS????
  • 28. Additional Implications of the Database Approach • Potential for enforcing standards: – crucial for the success of database applications in large organizations – standards refer to data item names, display formats, screens, report structures, meta-data (description of data) etc. • Reduced application development time: – incremental time to add each new application is reduced.
  • 29. Additional Implications of the Database Approach – 2. • Flexibility to change data structures: database structure may evolve as new requirements are defined. • Availability of up-to-date information: very important for on-line transaction systems such as airline, hotel, car reservations. • Economies of scale: by consolidating data and applications across departments wasteful overlap of resources and personnel can be avoided.
  • 30. Historical Development of Database Technology • Early Database Applications: Hierarchical and Network Models were introduced in mid 1960s and dominated the 70s. A bulk of the worldwide database processing still uses these models. • Relational Model based systems: originally introduced in 1970 this model was heavily researched and experimented with in IBM and universities. Relational DBMS products emerged in the 1980s.
  • 31. Historical Development of Database Technology – 2. • Object-oriented applications: OODBMSs were introduced in late 1980s and early 1990s to cater to the need of complex data processing in CAD and other applications. Their use is not large. • Data on the Web and E-commerce Applications: Web contains data in HTML with links among pages. E- commerce is using standards like XML (eXtended Markup Language).
  • 32. Extending Database Capabilities • New functionality is being added to DBMSs in the following areas: – Scientific Applications – Image Storage and Management – Audio and Video data management – Data Mining – Spatial data management – Time Series and Historical Data Management • The above gives rise to new research and development in incorporating new data types, complex data structures, new operations and indexing schemes in database systems.
  • 33. When NOT to use a DBMS • Main inhibitors (costs) of using a DBMS: – High initial investment and possible need for additional hardware. – Overhead for providing generality, security, concurrency control, recovery, and integrity functions. • When a DBMS may be unnecessary: – If the database and applications are simple, well defined, and not expected to change. – If there are stringent real-time requirements that may not be met because of DBMS overhead. – If access to data by multiple users is not required.
  • 34. When NOT to use a DBMS – 2. • When no DBMS may suffice: – If the database system is not able to handle the complexity of data because of modeling limitations – If the database users need special operations not supported by the DBMS.
  • 35. System Overview OLCP On-Line Complex Processing EIS OLAP data mining & On-Line Analytical Processing knowledge discovery Data Warehousing Data Marts DSS DP OLTP On-line Transaction Processing Operational databases Legacy systems

Notes de l'éditeur

  1. 1
  2. 1