SlideShare a Scribd company logo
Chapter 10 Database Management
Chapter 10 Objectives Discuss the functions  common to most DBMSs Identify the qualities  of valuable information Explain why data is important  to an organization Discuss the terms character,  field, record, and file Identify file maintenance techniques Differentiate between a file processing system approach and the database approach Describe characteristics of  relational, object-oriented, and multidimensional databases Explain how to interact with Web databases Discuss the responsibilities of  database analysts and administrators Define the term, database Next
Data and Information What is a  database ? p. 514 - 515 Database software   allows you to Collection of data  organized so  you can access,  retrieve, and  use it Database software  also called  database  management system  (DBMS) Add,  change,  and delete  data Create database Sort  and  retrieve  data Create forms  and  reports Next
Data and Information How are  data  and  information  related? p. 514 - 515 Fig. 10-1 Data is a collection of unprocessed items Information is data that is organized and meaningful Computers process data into information Next
Data and Information What is data integrity? p. 516 Degree to which data is correct Garbage in, garbage out (GIGO) —computer phrase that means you cannot create correct information from incorrect data Garbage out Garbage in Data integrity  is lost Next Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Data Security below Chapter 10
Data and Information What are the qualities of valuable information? Useful Accessible Organized p. 516 - 517 Timely Verifiable Accurate Cost-effective Next
The Hierarchy of Data What is a hierarchy? p. 517 Fig. 10-2 Database contains files, file contains records, record contains fields, field contains characters Next
The Hierarchy of Data What is a  field ? p. 518 Fig. 10-3 Combination of one or more characters Smallest unit of data user accesses Field name  uniquely identifies each field Field size   defines the maximum number of characters a field can contain Data type  specifies kind of data field contains Next
The Hierarchy of Data What are common data types? p. 518 Yes/No (also called  Boolean )—only the values Yes or No (or True or False) Hyperlink Web address that links to document or Web page Object (also called  BLOB  for binary large object)—photograph, audio, video, or document created in other application such as word processing or spreadsheet Next Currency dollar and cent amounts or numbers containing decimal values Date month, day, year, and sometimes time Memo lengthy text entries Text (also called  alphanumeric )—letters, numbers, or special characters Numeric numbers  only AutoNumber unique number automatically assigned to each new record
The Hierarchy of Data What is a  record ? p. 519 Group of  related fields Key field , or  primary key ,  uniquely identifies each record Next
The Hierarchy of Data What is a  data file ? p. 518 – 519 Fig. 10-4 Collection of related records stored on disk Next key field records fields 2 East Penn Drive 99 Tenth Street 33 Timmons Place 33099 Clark Street 54 Lucy Court Address Pittsboro Carmel Cincinnati Montgomery Shelbyville City IN Ruiz Adelbert 3928 IN Elena 4872 OH Drake Louella 3876 AL Murray Shannon 2928 IN Brewer Milton 2295 State Last Name First Name Member ID Gupta
Maintaining Data What is  file maintenance ? p. 520 Procedures that keep data current Next Changing records Adding records Deleting records
Maintaining Data Why do you add records? p. 520 Fig. 10-5 Add new record when you obtain new data Next
Maintaining Data Why do you change records? p. 521 Fig. 10-6 Correct inaccurate data Update old data Next
Maintaining Data Why do you delete records? p. 522 Fig. 10-7 When record no longer is needed Some programs remove record immediately, others flag record Next
Maintaining Data What is  validation ? p. 522 - 523 Fig. 10-8 Process of comparing data with a set of rules to find out if data is correct Reduce data entry errors and enhance data integrity before program writes data on disk Next
Maintaining Data What are the types of validity checks? p. 523 Consistency Check   tests for logical relationship between two or more fields Next Range Check  determines whether number is within specified range Completeness Check verifies that a required field contains data Check Digit   number(s) or character(s) appended to or inserted into a primary key value to confirm accuracy of primary key value Alphabetic/ Numeric Check  ensures correct type of data entered
File Processing Versus Databases What is a  file processing system ? p. 524 Each department or area within organization has own set of files May have weaknesses Records in one file may not relate to records in any other file Isolated data—data stored in separate files so it is difficult to access Next Data redundancy—same fields stored in multiple files
File Processing Versus Databases What is the  database approach ? p. 524 - 525 Fig. 10-9 Many programs and users can share data in database Secures data so only authorized users can access certain data Next
File Processing Versus Databases What are the strengths of the database approach? p. 525 Reduced data redundancy Improved data integrity Shared data Easier  access Reduced development time Next
File Processing Versus Databases How do a database application and a file processing application differ in the way they store data? p. 525 Fig. 10-10 Next
Database Management Systems What are popular database management systems (DBMSs)? p. 526 Fig. 10-11 Next Click to view Web  Link, click Chapter 10,  Click Web Link from left  navigation, then click  MySQL below Chapter 10
Database Management Systems What is a  data dictionary ? p. 527 Fig. 10-12 Contains data about each file in database and each field within those files Next
Database Management Systems What is a  query ? p. 528 - 529 Fig. 10-13 Request for specific data from a database Query language  consists of simple, English-like statements that allow users to specify data to display, print, or store Next Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Query below Chapter 10
Database Management Systems What is a  query by example (QBE) ? p. 528 - 529 Fig. 10-14 Program retrieves records that match criteria entered in form fields Has a graphical user interface that assists users with retrieving data Next
Database Management Systems What is a  form ? p. 530 Fig. 10-15 Window on screen that provides areas for entering or changing data in database Used to retrieve and maintain data in a database Form that sends data across network or Internet is called e-form, short for electronic form Next
Database Management Systems What is a  report generator ? p. 530 Fig. 10-16 Allows user to design a report on screen, retrieve data into report design, then display or print reports Also called report writer Next
Database Management Systems What is data security? p. 530 - 531 Read-only privileges - user can view data, but cannot change it DBMS provides means to ensure only authorized users can access data Access privileges   define activities that specific user or group of users can perform Full-update privileges  -user can view and change data Next
Database Management Systems What are  backup  and  log ? p. 531 Fig. 10-17 Backup  is a copy of the entire database Log  is a listing of activities that change database contents DBMS places three items in log: before image, actual change, and after image Next
Database Management Systems Video: How A Photo Sharing Site Keeps its Data Next CLICK TO START
Database Management Systems What is a  recovery utility ? p. 531 - 532 Rollforward —   DBMS uses log to re-enter changes made to data-base since last save or backup Also called  forward recovery Rollback —   DBMS uses log to undo any changes made to database during a certain period of time Also called  backward recovery Next Uses logs and/or backups to restore database when it is damaged or destroyed Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Continuous Backup  below Chapter 10
Relational, Object-Oriented, and Multidimensional Databases What is a  data model ? p. 532 Fig. 10-18 Rules and standards that define how database  organizes data Defines how users view organization of data Four popular data models Relational Object-oriented Object-relational Multidimensional Next
Relational, Object-Oriented, and Multidimensional Databases What is a  relational database ? p. 533 Fig. 10-19 Stores data in tables that consist of  rows  and  columns Each row has primary key Each column has unique name Stores data relationships Uses specialized terminology Next Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Relational Databases below Chapter 10
Relational, Object-Oriented, and Multidimensional Databases What is a  relationship ? p. 533 Fig. 10-20 Connection within data Next
Relational, Object-Oriented, and Multidimensional Databases What is  Structured Query Language (SQL) ? p. 534 Fig. 10-21 Allows you to manage, update, and retrieve data Has special keywords and rules included in SQL statements Next Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  SQL below Chapter 10
Relational, Object-Oriented, and Multidimensional Databases What is an  object-oriented database (OODB) ? p. 534 - 535 Object  is item that contains data, as well as actions that read or process data Can store more types of data Can access data faster Programmers can reuse objects Next Advantages Often uses  object query language (OQL) Stores data in objects Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Object-Oriented Databases below Chapter 10
Relational, Object-Oriented, and Multidimensional Databases What are examples of applications appropriate for an  object-oriented database? p. 534 Next Multimedia databases Store images, audio clips,  and/or video clips Groupware databases Store documents such as schedules, calendars, manuals, memos, and reports Computer-aided design  (CAD) databases Store data about  engineering, architectural,  and scientific designs Hypertext databases Contain text links  to other documents Hypermedia databases Contain text, graphics,  video, and sound Web databases Link to e-form on Web page
What is a  multidimensional database ? Relational, Object-Oriented, and Multidimensional Databases p. 535 Next Stores data in dimensions Multiple dimensions, also called  hypercube , allow users to analyze any view of data Can consolidate data much faster than relational database Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Multidimensional Databases below Chapter 10
Relational, Object-Oriented, and Multidimensional Databases What is a  data warehouse ? p. 536 Next Data mart is smaller version of data warehouse Uses multidimensional databases Often uses a process called data mining to find patterns and relationships among data Huge database system that stores and manages data required to analyze historical and current transactions Quick and efficient way to access large amounts of data
Web Databases What is a Web database? p. 536 - 537 Fig. 10-23 Database you access through the Web by filling in a form on a Web page Usually resides on a database server, a computer that stores and provides access to a database Next Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Collaborative Databases below Chapter 10
Database Administration What are guidelines for developing a database? 1.  Determine the purpose of the database 4.  Determine the relationships among  the tables or files Design tables on paper first Each table should contain  data about one subject p. 537 Fig. 10-24 Be sure every record has a unique  primary key Use separate fields for logically  distinct items Do not create fields for information  that can be derived from entries in  other fields Allow enough space for each field Set default values for frequently  entered data 3.   Design the records and fields for each table 2.  Design the tables Next
Database Administration What is the role of the database analyst and administrator? p. 538 Focuses on meaning and usage of data Decides proper placement of fields, defines relationships, and identifies users’ access privileges Creates and maintains data dictionary, manages  database security,  monitors database performance, and checks backup and recovery procedures Next Database analyst (DA) Database administrator (DBA) Click to view Web  Link, click Chapter 10, Click  Web Link from left  navigation, then click  Database Administrators below Chapter 10
Summary of Database Management Chapter 10 Complete How data and information are  valuable assets to an organization Methods for maintaining  high-quality data Assessing the quality of  valuable information Advantages of organizing  data in a database Various types of databases Role of the database  analysts and administrators

More Related Content

PPT
Chapter10
PPT
PDF
Chapter1.0 database management system
PPTX
CH10-Managing a Database
PPTX
Database Management
PDF
Data base management system
PPTX
DATABASE MANAGEMENT
PPT
Database
Chapter10
Chapter1.0 database management system
CH10-Managing a Database
Database Management
Data base management system
DATABASE MANAGEMENT
Database

What's hot (20)

PPT
Cibm work shop 2chapter six
PPTX
Database System Concepts
DOC
Database Management System
DOC
Assign 1
PPTX
Dbms role advantages
PDF
Database Management System
PPTX
Introduction to Database
PDF
The Databases applications in government sections
PPTX
Relational database concept and technology
PPT
data resource management
PPT
Traditional vs modern dbms
PPT
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
PPT
Database and Database Management (DBM): Health Informatics
DOCX
Data base management
PPTX
Managing data resources
PPT
Chapter 2 database environment
PPT
Types dbms
PDF
database ppt(2)
PPT
data base manage ment
PDF
Database design, implementation, and management -chapter02
Cibm work shop 2chapter six
Database System Concepts
Database Management System
Assign 1
Dbms role advantages
Database Management System
Introduction to Database
The Databases applications in government sections
Relational database concept and technology
data resource management
Traditional vs modern dbms
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Database and Database Management (DBM): Health Informatics
Data base management
Managing data resources
Chapter 2 database environment
Types dbms
database ppt(2)
data base manage ment
Database design, implementation, and management -chapter02
Ad

Viewers also liked (6)

PPT
Indexing Data Structure
PDF
Indexing and-hashing
PPTX
Bat algorithm and applications
PPT
12. Indexing and Hashing in DBMS
PPT
Controlstatment in c
PPT
Controlstatment in c
Indexing Data Structure
Indexing and-hashing
Bat algorithm and applications
12. Indexing and Hashing in DBMS
Controlstatment in c
Controlstatment in c
Ad

Similar to Chapter10 (20)

PPTX
Database Management.pptxqqwwqwqwqqweqwqw
PPT
TID Chapter 10 Introduction To Database
PDF
CSC1100 - Chapter08 - Database Management
PPTX
ICT Basis: Managing a DataBase, Discovering Computer
PPT
Chapter 1
PPT
Behind The Scenes Databases And Information Systems 6
PPTX
MS-CIT Unit 9.pptx
PPTX
Chapter 10 database management
PDF
PHP Roadshow - MySQL Database Essentials
PPTX
Chapter 5 data resource management
PPTX
Relational Database management notes for mca.pptx
PPT
Ch 1 D B Environment
PPTX
PPTX
Week 9
PPTX
Introduction to DBMS_VP.pptx
PPT
Fundamentals of information systems chapter 3.ppt
PPTX
Fundamentals of information systems chapter 3.pptx
PPTX
Lec20.pptx introduction to data bases and information systems
PPT
Week 1 Before the Advent of Database Systems & Fundamental Concepts
PPTX
data and information
Database Management.pptxqqwwqwqwqqweqwqw
TID Chapter 10 Introduction To Database
CSC1100 - Chapter08 - Database Management
ICT Basis: Managing a DataBase, Discovering Computer
Chapter 1
Behind The Scenes Databases And Information Systems 6
MS-CIT Unit 9.pptx
Chapter 10 database management
PHP Roadshow - MySQL Database Essentials
Chapter 5 data resource management
Relational Database management notes for mca.pptx
Ch 1 D B Environment
Week 9
Introduction to DBMS_VP.pptx
Fundamentals of information systems chapter 3.ppt
Fundamentals of information systems chapter 3.pptx
Lec20.pptx introduction to data bases and information systems
Week 1 Before the Advent of Database Systems & Fundamental Concepts
data and information

More from ALBAKRI MOHAMMAD (20)

PPT
Word 2007 Unit C
PPT
Word 2007 Unit B
PPT
Word 2007 Unit A
PPT
Power Point Unit D
PPT
Power Point Unit C
PPT
Power Point Unit A
PPT
Power Point Unit B
PPT
Gps Introduction
DOC
Homework Assignments
PPT
Gis Mapping Examples
PPT
Excel 2007 Unit D
PPT
Excel 2007 Unit B
PPT
Excel 2007 Unit C
PPT
Excel 2007 Unit A
PPT
Cost Of Computing
PPT
Comp 5 Computer Concepts
PPT
Chapter09
PPT
Chapter08
PPT
Chapter07
PPT
Chapter06
Word 2007 Unit C
Word 2007 Unit B
Word 2007 Unit A
Power Point Unit D
Power Point Unit C
Power Point Unit A
Power Point Unit B
Gps Introduction
Homework Assignments
Gis Mapping Examples
Excel 2007 Unit D
Excel 2007 Unit B
Excel 2007 Unit C
Excel 2007 Unit A
Cost Of Computing
Comp 5 Computer Concepts
Chapter09
Chapter08
Chapter07
Chapter06

Recently uploaded (20)

PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Complications of Minimal Access Surgery at WLH
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Classroom Observation Tools for Teachers
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Business Ethics Teaching Materials for college
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
Supply Chain Operations Speaking Notes -ICLT Program
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
STATICS OF THE RIGID BODIES Hibbelers.pdf
Renaissance Architecture: A Journey from Faith to Humanism
Final Presentation General Medicine 03-08-2024.pptx
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Anesthesia in Laparoscopic Surgery in India
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Complications of Minimal Access Surgery at WLH
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Classroom Observation Tools for Teachers
O5-L3 Freight Transport Ops (International) V1.pdf
human mycosis Human fungal infections are called human mycosis..pptx
Business Ethics Teaching Materials for college
Microbial diseases, their pathogenesis and prophylaxis
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
TR - Agricultural Crops Production NC III.pdf
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Supply Chain Operations Speaking Notes -ICLT Program

Chapter10

  • 1. Chapter 10 Database Management
  • 2. Chapter 10 Objectives Discuss the functions common to most DBMSs Identify the qualities of valuable information Explain why data is important to an organization Discuss the terms character, field, record, and file Identify file maintenance techniques Differentiate between a file processing system approach and the database approach Describe characteristics of relational, object-oriented, and multidimensional databases Explain how to interact with Web databases Discuss the responsibilities of database analysts and administrators Define the term, database Next
  • 3. Data and Information What is a database ? p. 514 - 515 Database software allows you to Collection of data organized so you can access, retrieve, and use it Database software also called database management system (DBMS) Add, change, and delete data Create database Sort and retrieve data Create forms and reports Next
  • 4. Data and Information How are data and information related? p. 514 - 515 Fig. 10-1 Data is a collection of unprocessed items Information is data that is organized and meaningful Computers process data into information Next
  • 5. Data and Information What is data integrity? p. 516 Degree to which data is correct Garbage in, garbage out (GIGO) —computer phrase that means you cannot create correct information from incorrect data Garbage out Garbage in Data integrity is lost Next Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Data Security below Chapter 10
  • 6. Data and Information What are the qualities of valuable information? Useful Accessible Organized p. 516 - 517 Timely Verifiable Accurate Cost-effective Next
  • 7. The Hierarchy of Data What is a hierarchy? p. 517 Fig. 10-2 Database contains files, file contains records, record contains fields, field contains characters Next
  • 8. The Hierarchy of Data What is a field ? p. 518 Fig. 10-3 Combination of one or more characters Smallest unit of data user accesses Field name uniquely identifies each field Field size defines the maximum number of characters a field can contain Data type specifies kind of data field contains Next
  • 9. The Hierarchy of Data What are common data types? p. 518 Yes/No (also called Boolean )—only the values Yes or No (or True or False) Hyperlink Web address that links to document or Web page Object (also called BLOB for binary large object)—photograph, audio, video, or document created in other application such as word processing or spreadsheet Next Currency dollar and cent amounts or numbers containing decimal values Date month, day, year, and sometimes time Memo lengthy text entries Text (also called alphanumeric )—letters, numbers, or special characters Numeric numbers only AutoNumber unique number automatically assigned to each new record
  • 10. The Hierarchy of Data What is a record ? p. 519 Group of related fields Key field , or primary key , uniquely identifies each record Next
  • 11. The Hierarchy of Data What is a data file ? p. 518 – 519 Fig. 10-4 Collection of related records stored on disk Next key field records fields 2 East Penn Drive 99 Tenth Street 33 Timmons Place 33099 Clark Street 54 Lucy Court Address Pittsboro Carmel Cincinnati Montgomery Shelbyville City IN Ruiz Adelbert 3928 IN Elena 4872 OH Drake Louella 3876 AL Murray Shannon 2928 IN Brewer Milton 2295 State Last Name First Name Member ID Gupta
  • 12. Maintaining Data What is file maintenance ? p. 520 Procedures that keep data current Next Changing records Adding records Deleting records
  • 13. Maintaining Data Why do you add records? p. 520 Fig. 10-5 Add new record when you obtain new data Next
  • 14. Maintaining Data Why do you change records? p. 521 Fig. 10-6 Correct inaccurate data Update old data Next
  • 15. Maintaining Data Why do you delete records? p. 522 Fig. 10-7 When record no longer is needed Some programs remove record immediately, others flag record Next
  • 16. Maintaining Data What is validation ? p. 522 - 523 Fig. 10-8 Process of comparing data with a set of rules to find out if data is correct Reduce data entry errors and enhance data integrity before program writes data on disk Next
  • 17. Maintaining Data What are the types of validity checks? p. 523 Consistency Check tests for logical relationship between two or more fields Next Range Check determines whether number is within specified range Completeness Check verifies that a required field contains data Check Digit number(s) or character(s) appended to or inserted into a primary key value to confirm accuracy of primary key value Alphabetic/ Numeric Check ensures correct type of data entered
  • 18. File Processing Versus Databases What is a file processing system ? p. 524 Each department or area within organization has own set of files May have weaknesses Records in one file may not relate to records in any other file Isolated data—data stored in separate files so it is difficult to access Next Data redundancy—same fields stored in multiple files
  • 19. File Processing Versus Databases What is the database approach ? p. 524 - 525 Fig. 10-9 Many programs and users can share data in database Secures data so only authorized users can access certain data Next
  • 20. File Processing Versus Databases What are the strengths of the database approach? p. 525 Reduced data redundancy Improved data integrity Shared data Easier access Reduced development time Next
  • 21. File Processing Versus Databases How do a database application and a file processing application differ in the way they store data? p. 525 Fig. 10-10 Next
  • 22. Database Management Systems What are popular database management systems (DBMSs)? p. 526 Fig. 10-11 Next Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click MySQL below Chapter 10
  • 23. Database Management Systems What is a data dictionary ? p. 527 Fig. 10-12 Contains data about each file in database and each field within those files Next
  • 24. Database Management Systems What is a query ? p. 528 - 529 Fig. 10-13 Request for specific data from a database Query language consists of simple, English-like statements that allow users to specify data to display, print, or store Next Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Query below Chapter 10
  • 25. Database Management Systems What is a query by example (QBE) ? p. 528 - 529 Fig. 10-14 Program retrieves records that match criteria entered in form fields Has a graphical user interface that assists users with retrieving data Next
  • 26. Database Management Systems What is a form ? p. 530 Fig. 10-15 Window on screen that provides areas for entering or changing data in database Used to retrieve and maintain data in a database Form that sends data across network or Internet is called e-form, short for electronic form Next
  • 27. Database Management Systems What is a report generator ? p. 530 Fig. 10-16 Allows user to design a report on screen, retrieve data into report design, then display or print reports Also called report writer Next
  • 28. Database Management Systems What is data security? p. 530 - 531 Read-only privileges - user can view data, but cannot change it DBMS provides means to ensure only authorized users can access data Access privileges define activities that specific user or group of users can perform Full-update privileges -user can view and change data Next
  • 29. Database Management Systems What are backup and log ? p. 531 Fig. 10-17 Backup is a copy of the entire database Log is a listing of activities that change database contents DBMS places three items in log: before image, actual change, and after image Next
  • 30. Database Management Systems Video: How A Photo Sharing Site Keeps its Data Next CLICK TO START
  • 31. Database Management Systems What is a recovery utility ? p. 531 - 532 Rollforward — DBMS uses log to re-enter changes made to data-base since last save or backup Also called forward recovery Rollback — DBMS uses log to undo any changes made to database during a certain period of time Also called backward recovery Next Uses logs and/or backups to restore database when it is damaged or destroyed Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Continuous Backup below Chapter 10
  • 32. Relational, Object-Oriented, and Multidimensional Databases What is a data model ? p. 532 Fig. 10-18 Rules and standards that define how database organizes data Defines how users view organization of data Four popular data models Relational Object-oriented Object-relational Multidimensional Next
  • 33. Relational, Object-Oriented, and Multidimensional Databases What is a relational database ? p. 533 Fig. 10-19 Stores data in tables that consist of rows and columns Each row has primary key Each column has unique name Stores data relationships Uses specialized terminology Next Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Relational Databases below Chapter 10
  • 34. Relational, Object-Oriented, and Multidimensional Databases What is a relationship ? p. 533 Fig. 10-20 Connection within data Next
  • 35. Relational, Object-Oriented, and Multidimensional Databases What is Structured Query Language (SQL) ? p. 534 Fig. 10-21 Allows you to manage, update, and retrieve data Has special keywords and rules included in SQL statements Next Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click SQL below Chapter 10
  • 36. Relational, Object-Oriented, and Multidimensional Databases What is an object-oriented database (OODB) ? p. 534 - 535 Object is item that contains data, as well as actions that read or process data Can store more types of data Can access data faster Programmers can reuse objects Next Advantages Often uses object query language (OQL) Stores data in objects Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Object-Oriented Databases below Chapter 10
  • 37. Relational, Object-Oriented, and Multidimensional Databases What are examples of applications appropriate for an object-oriented database? p. 534 Next Multimedia databases Store images, audio clips, and/or video clips Groupware databases Store documents such as schedules, calendars, manuals, memos, and reports Computer-aided design (CAD) databases Store data about engineering, architectural, and scientific designs Hypertext databases Contain text links to other documents Hypermedia databases Contain text, graphics, video, and sound Web databases Link to e-form on Web page
  • 38. What is a multidimensional database ? Relational, Object-Oriented, and Multidimensional Databases p. 535 Next Stores data in dimensions Multiple dimensions, also called hypercube , allow users to analyze any view of data Can consolidate data much faster than relational database Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Multidimensional Databases below Chapter 10
  • 39. Relational, Object-Oriented, and Multidimensional Databases What is a data warehouse ? p. 536 Next Data mart is smaller version of data warehouse Uses multidimensional databases Often uses a process called data mining to find patterns and relationships among data Huge database system that stores and manages data required to analyze historical and current transactions Quick and efficient way to access large amounts of data
  • 40. Web Databases What is a Web database? p. 536 - 537 Fig. 10-23 Database you access through the Web by filling in a form on a Web page Usually resides on a database server, a computer that stores and provides access to a database Next Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Collaborative Databases below Chapter 10
  • 41. Database Administration What are guidelines for developing a database? 1. Determine the purpose of the database 4. Determine the relationships among the tables or files Design tables on paper first Each table should contain data about one subject p. 537 Fig. 10-24 Be sure every record has a unique primary key Use separate fields for logically distinct items Do not create fields for information that can be derived from entries in other fields Allow enough space for each field Set default values for frequently entered data 3. Design the records and fields for each table 2. Design the tables Next
  • 42. Database Administration What is the role of the database analyst and administrator? p. 538 Focuses on meaning and usage of data Decides proper placement of fields, defines relationships, and identifies users’ access privileges Creates and maintains data dictionary, manages database security, monitors database performance, and checks backup and recovery procedures Next Database analyst (DA) Database administrator (DBA) Click to view Web Link, click Chapter 10, Click Web Link from left navigation, then click Database Administrators below Chapter 10
  • 43. Summary of Database Management Chapter 10 Complete How data and information are valuable assets to an organization Methods for maintaining high-quality data Assessing the quality of valuable information Advantages of organizing data in a database Various types of databases Role of the database analysts and administrators