1 / 30

Chapter 5

0. Chapter 5. Database Concepts. Why Study Databases?. All most all Information Systems use an underlying Database to store information Because Databases are v astly superior to spreadsheets and file processing systems. Why Study Databases?.

ulric-stone
Download Presentation

Chapter 5

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 0 Chapter 5 Database Concepts

  2. Why Study Databases? • All most all Information Systems use an underlying Database to store information • Because Databases are vastly superior to spreadsheets and file processing systems

  3. Why Study Databases? • Databases have NOT changed much in almost 40 years. • Because it is a great framework for storing data • Overtime, the entire world has embraced the same standard framework • Databases will not go away anytime soon.

  4. Foundation Data Concepts Abstract Concepts • Entity – person, place, object or event – stored as a record or a table row • Attribute – characteristic of an entity – stored as field or table column

  5. Foundation Data Concepts Large Database Concepts • Database – a collection of related tables • Tables – a collection of related records – collection of related entities • Record – collection of fields (table row) –represents an entity • Field – collection of characters (table column) – represents an attribute • Character – single alphabetic, numeric or other symbol Small

  6. Fields • Characters “B R E I M E R” form a field • A field is an attribute of an entity

  7. Records • A bunch of fields form a record • A record is an entity

  8. Tables • A bunch of records forms a table • A table is a group of related entities

  9. 0 Databases • A bunch of tables form a database • A database can represent a single business or an entire market

  10. 0 Databases • But, databases are not just a bunch of tables • A database also includes relationships between the different tables

  11. ThingA ThingB Relationship Man Woman Married Types of Relationships One to One • Examples? • Analysis Technique • Consider ThingA and ThingB • Can ThingA be related to more than one ThingB? • Can ThingB be related to more than one ThingA? • If the two answers are NO, then it is a one to one relationship.

  12. Student Faculty Student Student Advises Get Advisement Types of Relationships One to Many • Examples? • Analysis Technique • Consider ThingA and ThingB • Can ThingA be related to more than one ThingB? • Can ThingB be related to more than one ThingA? • If only one answer is yes, then you have a one to many relationship

  13. Student Course Student Student Course course has a student Student student takes course Types of Relationships Many to Many • Examples? • Analysis Technique • Consider ThingA and ThingB • Can ThingA be related to more than one ThingB? • Can ThingB be related to more than one ThingA? • If the answers are yes and yes, then the relationship is many to many.

  14. How to Model Relationships

  15. Find the name and hire date of the manager working on the sales manual project

  16. Traditional File Processing Sucks File Processing: • Data is organized, stored, and processed in independent files of data records • Sometimes the files are spreadsheets • Sometimes they can can even be Word or Text Documents (eeeck!)

  17. Problems of File Processing • Data Redundancy – • duplicate data requires update to many files • Lack of Integration – • data stored in separate fileshard to combine data • Data Dependence – • changing the file format requires changing the program…

  18. Database Management Approach • Consolidates data records into one CENTRAL database that can be accessed by many different application programs.

  19. Database Management Software (DBMS) Definition: • Software that controls the creation, maintenance, and use of databases

  20. DBMS Software Components • Database Definition • Language and graphical tools to define entities, relationships, integrity constraints, and authorization rights • Application Development • Graphical tools to develop menus, data entry forms, and reports

  21. DBMS Software Components • Transaction Processing • Controls to prevent interference from simultaneous users and • Controls to recover lost data after a failure • Database Tuning • Tools to monitor and improve database performance

  22. Database Interrogation Definition: • Capability of a DBMS to report information from the database in response to end users’ requests • Query Language – allows easy, immediate access to ad hoc data requests • Report Generator - allows quick, easy specification of a report format for information users have requested

  23. Natural Language vs. SQL Queries

  24. Schemas Schema - A description of the database Subschema – describes a subset of the database and which users have access to this subset

  25. Data Definition Language • Language Used to describe Schemas and Subschemas • Describes relationships between different data • Provides a Logical view of the data

  26. Data Dictionary Entry • A more detailed description of the data in a database • Specifies data types and ranges • Assists programmers in understanding the data

  27. Physical vs. Logical • DBMS concentrate on Physical access to the underlying tables • Concurrency control • Query’s • Creating/deleting tables

  28. Physical vs. Logical • MIS systems are (Logically) interface with a DBMS • monthly reports • charts • automated inquiries

  29. Application Development • Today, even non-technical staff can use tools to build little programs that use a database. • Database Management Systems have all kinds of tools to develop custom application programs and interfaces. • Example: The College’s MIS (Banner) is actually an application built on top of a Oracle Database.

More Related