SlideShare a Scribd company logo
Your Interactive Guide
to the Digital World
Discovering
Computers 2012
Define the term,
database, and explain
how a database
interacts with data
and information
Define the term, data
integrity, and
describe the qualities
of valuable
information
Discuss the terms
character, field,
record, and file
Describe file
maintenance
techniques and
validation techniques
Differentiate between
a file processing
approach and the
database approach
Discovering Computers 2012: Chapter 10 2
See Page 513
for Detailed Objectives
Discuss the functions
common to most
database management
systems
Describe characteristics
of relational, object-
oriented, and
multidimensional
databases
Explain how to access
Web databases
Identify database design
guidelines and discuss
the responsibilities of
database analysts and
administrators
Discovering Computers 2012: Chapter 10 3
See Page 513
for Detailed Objectives
Database
•Collection of
data
organized in
a manner that
allows access,
retrieval, and
use of that
data
Data
•Collection of
unprocessed
items
•Text
•Numbers
•Images
•Audio
•Video
Information
•Processed
data
•Documents
•Audio
•Images
•Video
Discovering Computers 2012: Chapter 10 4
Page 514
Discovering Computers 2012: Chapter 10 5
Pages 514 – 515
Figure 10-1
 Database software, often called a database
management system (DBMS), allows users to:
Discovering Computers 2012: Chapter 10 6
Page 515
Create a computerized
database
Add, modify, and
delete data
Sort and retrieve data
Create forms and
reports from the data
 Data integrity identifies the quality of the data
 Garbage in, garbage out (GIGO) points out the
accuracy of a computer’s output depends on the
accuracy of the input
Discovering Computers 2012: Chapter 10 7
Page 516
 Valuable information should have the following
characteristics:
Discovering Computers 2012: Chapter 10 8
Pages 516 - 517
Accurate Verifiable Timely Organized
Accessible Useful
Cost-
effective
 Data is organized in layers
 Files, records, fields, characters
Discovering Computers 2012: Chapter 10 9
Page 517
Figure 10-2
 A character is one
byte
 Numbers, letters, space,
punctuation marks, or
other symbols
 A field is a
combination of one or
more related
characters
 Field name
 Field size
 Data type
Discovering Computers 2012: Chapter 10 10
Page 518
Figure 10-3
 Common data types include:
Discovering Computers 2012: Chapter 10 11
Page 518
Text Numeric AutoNumber Currency
Date Memo Yes/No Hyperlink
Object Attachment
 A record is a group of related fields
 A primary key uniquely identifies each record
 A data file is a collection of related records
Discovering Computers 2012: Chapter 10 12
Page 519
Figure 10-4
 File maintenance refers to the procedures that
keep data current
Discovering Computers 2012: Chapter 10 13
Page 520
Adding
records
Modifying
records
Deleting
records
 Users add new records to a file when they obtain
new data
Discovering Computers 2012: Chapter 10 14
Page 520
Figure 10-5
 Users modify a record to correct inaccurate data or
update old data
Discovering Computers 2012: Chapter 10 15
Page 521
Figure 10-6
 When a record no longer is needed, a user deletes it
from a file
Discovering Computers 2012: Chapter 10 16
Page 522
Figure 10-7
 Validation compares data with a set of rules or
values to find out if the data is correct
Discovering Computers 2012: Chapter 10 17
Pages 522 - 524
Alphabetic/Numeric
check
Range check Consistency check
Completeness check Check digit Other checks
File processing system
•Each department has its
own set of files
•Used for many years
•Have data redundancy
•Isolate data
Database approach
•Programs and users share
data
•Reduce data redundancy
•Improve data integrity
•Share data
•Allows easier access
•Reduces development
time
•Can be more vulnerable
Discovering Computers 2012: Chapter 10 18
Pages 524 - 526
Discovering Computers 2012: Chapter 10 19
Page 525
Figure 10-10
Discovering Computers 2012: Chapter 10 20
Page 527
Figure 10-11
 A data dictionary contains data about each file in
the database and each field in those files
Discovering Computers 2012: Chapter 10 21
Pages 527 – 528
Figure 10-12
 A DBMS provides several tools that allow users
and programs to retrieve and maintain data in the
database
Discovering Computers 2012: Chapter 10 22
Page 528
Query language
Query by example
Form
Report generator
 A query language consists of simple, English-like
statements that allow users to specify the data to
display, print, or store
 Query by example (QBE) provides a GUI to assist
users with retrieving data
Discovering Computers 2012: Chapter 10 23
Page 528
Discovering Computers 2012: Chapter 10 24
Page 529
Figure 10-13
 A form is a window on the screen that provides
areas for entering or modifying data in a database
Discovering Computers 2012: Chapter 10 25
Page 530
Figure 10-15
 A report generator allows users to design a report
on the screen, retrieve data into the report design,
and then display or print the report
Discovering Computers 2012: Chapter 10 26
Page 531
Figure 10-16
A DBMS provides means to
ensure that only authorized
users access data at permitted
times
•Access privileges
•Principle of least privilege
Discovering Computers 2012: Chapter 10 27
Page 531
 A DMBS provides a variety of techniques to restore
the database to a usable form in case it is damaged
or destroyed
Discovering Computers 2012: Chapter 10 28
Pages 531 - 532
Backup Log
Recovery
utility
Continuous
backup
Discovering Computers 2012: Chapter 10 29
Page 532
Figure 10-17
 A data model consists of rules and standards that
define how the database organizes data
Discovering Computers 2012: Chapter 10 30
Page 533
Figure 10-18
 A relational
database stores data
in tables that consist
of rows and columns
 Each row has a
primary key
 Each column has a
unique name
 A relationship is a
link within the data
Discovering Computers 2012: Chapter 10 31
Page 533
Figure 10-20
 Structured Query Language (SQL) is a query
language that allows users to manage, update, and
retrieve data
Discovering Computers 2012: Chapter 10 32
Page 534
Figure 10-21
 An object-oriented database (OODB) stores data
in objects
 Examples of applications appropriate for an object-
oriented database include:
Discovering Computers 2012: Chapter 10 33
Page 534
Multimedia
database
Groupware
database
Computer-
aided design
database
Hypertext
database
Discovering Computers 2012: Chapter 10 34
Page 535
Figure 10-22
 A multidimensional database can store data in
more than two dimensions of data
 Sometimes known as a hypercube
 Can consolidate data much faster than a relational
database
 A data warehouse is a huge database that stores
and manages the data required to analyze
historical and current transactions
Discovering Computers 2012: Chapter 10 35
Pages 535 - 536
 Databases on the Web allow you to:
Discovering Computers 2012: Chapter 10 36
Page 536
Shop for
products or
services
Buy or sell
stocks
Search for a job
Make airline
reservations
Register for
college classes
Check semester
grades
Discovering Computers 2012: Chapter 10 37
Page 536
Figure 10-23
 It is important to have a carefully designed
database
Discovering Computers 2012: Chapter 10 38
Page 537
Figure 10-24
Database analysts and administrators are responsible
for managing and coordinating all database activities
Database Analyst (DA)
Decides on proper field
placement, defines data
relationship, and identifies
users’ access privileges
Database Administrator
(DBA)
Creates and maintains the data
dictionary, manages security,
monitors performance, and
checks backup and recovery
procedures
Discovering Computers 2012: Chapter 10 39
Page 538
 Employees should
learn how to use the
data in the database
effectively
 Interact with
database
 Identify new data for
the database
 Maintain the
database
Discovering Computers 2012: Chapter 10 40
Page 538
Figure 10-25
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
Roles of the
database analysts
and
administrators
Discovering Computers 2012: Chapter 10 41
Page 539
Your Interactive Guide
to the Digital World
Discovering
Computers 2012
Chapter 10 Complete

More Related Content

PPT
Data flow diagram(19th march)
Ravi Shekhar
 
PPT
Normalization
Jigisha Pandya
 
PPTX
Presentazione di Excel
Salvatore Cianciabella
 
PPT
Kendall sad8e ch02
N/A
 
PDF
Lesson 6 short keys
JODON INSTITUTE COMPUTER CENTER
 
PDF
Lecture1 (is342) (office automationsystems)
Taibah University, College of Computer Science & Engineering
 
PDF
Chapter 1 - Intro to Software Project Management.pdf
rahatansari3
 
PPT
Week3 task analysis_v1 (3)
Jahid Blackrose
 
Data flow diagram(19th march)
Ravi Shekhar
 
Normalization
Jigisha Pandya
 
Presentazione di Excel
Salvatore Cianciabella
 
Kendall sad8e ch02
N/A
 
Lesson 6 short keys
JODON INSTITUTE COMPUTER CENTER
 
Lecture1 (is342) (office automationsystems)
Taibah University, College of Computer Science & Engineering
 
Chapter 1 - Intro to Software Project Management.pdf
rahatansari3
 
Week3 task analysis_v1 (3)
Jahid Blackrose
 

Viewers also liked (20)

PPTX
Chapter 9 communications and networks
haider ali
 
PPTX
Chapter 12 information system development
haider ali
 
PPTX
Chapter 6 output
haider ali
 
PDF
Operating Systems and Utility Programs
Samudin Kassan
 
PPTX
CH02-Fundamental of WWW and Internet
Sukanya Ben
 
PPTX
Chapter 2 the internet and world wide web
haider ali
 
PPTX
Chapter 11 computer security and safety, ethics, and privacy
haider ali
 
PPT
Dbms1
Suleman Mohd
 
PPTX
General form of a research paper presentation
Waqar Younus
 
PDF
Data Communication Principles
mekind
 
PPTX
CH13-Computer Programs and Programming Languages
Sukanya Ben
 
PPTX
Chapter 03
Sukanya Ben
 
PPTX
CH14-Enterprise Computing
Sukanya Ben
 
PDF
Storage
Samudin Kassan
 
PPTX
CH12-Exploring Information System Development
Sukanya Ben
 
PDF
Output
Samudin Kassan
 
PPTX
Chapter 4 the components of the system unit
haider ali
 
PPTX
Discovering Computers: Chapter 14
Anna Stirling
 
PPTX
Chapter 5 input
haider ali
 
PPTX
Chapter 8 operating systems and utility programs
haider ali
 
Chapter 9 communications and networks
haider ali
 
Chapter 12 information system development
haider ali
 
Chapter 6 output
haider ali
 
Operating Systems and Utility Programs
Samudin Kassan
 
CH02-Fundamental of WWW and Internet
Sukanya Ben
 
Chapter 2 the internet and world wide web
haider ali
 
Chapter 11 computer security and safety, ethics, and privacy
haider ali
 
General form of a research paper presentation
Waqar Younus
 
Data Communication Principles
mekind
 
CH13-Computer Programs and Programming Languages
Sukanya Ben
 
Chapter 03
Sukanya Ben
 
CH14-Enterprise Computing
Sukanya Ben
 
CH12-Exploring Information System Development
Sukanya Ben
 
Chapter 4 the components of the system unit
haider ali
 
Discovering Computers: Chapter 14
Anna Stirling
 
Chapter 5 input
haider ali
 
Chapter 8 operating systems and utility programs
haider ali
 
Ad

Similar to Chapter 10 database management (20)

PPTX
Database Management
Elly Brent Baldovino
 
PPTX
ICT Basis: Managing a DataBase, Discovering Computer
kippler056
 
PPTX
CH10-Managing a Database
Sukanya Ben
 
PPTX
Database
vicky vicky
 
PPT
Chapter10
Izaham
 
PPT
Chapter10
ALBAKRI MOHAMMAD
 
PDF
Chapter1.0 database management system
bluejayjunior
 
PPT
Chapter10
Jan Crisides Corrado
 
PPTX
Database Management.pptxqqwwqwqwqqweqwqw
adrianantopina1
 
PPT
Database
Dhani Ahmad
 
PPT
Lecture 04 data resource management
Dynamic Research Centre & institute
 
PDF
Lecture-4: Introduction to Programming & Databases
Mubashir Ali
 
PPTX
1 introduction
Ngeam Soly
 
PDF
Bridging the Last Mile: Getting Data to the People Who Need It (APAC)
Denodo
 
PDF
The technology of the business data lake
Capgemini
 
PPTX
Chapter 12
Ahmed Magdy
 
PPTX
Enabling Self-service Data Provisioning Through Semantic Enrichment of Data |...
Ahmad Assaf
 
PDF
Cloud Modernization and Data as a Service Option
Denodo
 
PDF
INF3703 - Chapter 17 Database Connectivity Web Technologies
bloeyyy
 
Database Management
Elly Brent Baldovino
 
ICT Basis: Managing a DataBase, Discovering Computer
kippler056
 
CH10-Managing a Database
Sukanya Ben
 
Database
vicky vicky
 
Chapter10
Izaham
 
Chapter10
ALBAKRI MOHAMMAD
 
Chapter1.0 database management system
bluejayjunior
 
Database Management.pptxqqwwqwqwqqweqwqw
adrianantopina1
 
Database
Dhani Ahmad
 
Lecture 04 data resource management
Dynamic Research Centre & institute
 
Lecture-4: Introduction to Programming & Databases
Mubashir Ali
 
1 introduction
Ngeam Soly
 
Bridging the Last Mile: Getting Data to the People Who Need It (APAC)
Denodo
 
The technology of the business data lake
Capgemini
 
Chapter 12
Ahmed Magdy
 
Enabling Self-service Data Provisioning Through Semantic Enrichment of Data |...
Ahmad Assaf
 
Cloud Modernization and Data as a Service Option
Denodo
 
INF3703 - Chapter 17 Database Connectivity Web Technologies
bloeyyy
 
Ad

More from haider ali (20)

PDF
Upwork freelancer guide
haider ali
 
PPTX
Chapter 13 programming languages and program development
haider ali
 
PPTX
Chapter 3 application software
haider ali
 
PPTX
Modalauxiliaries 1
haider ali
 
PPTX
Teaching tenses
haider ali
 
PPTX
Tenses
haider ali
 
PPTX
English parts of speech
haider ali
 
PPTX
Parts of speech
haider ali
 
PPTX
Fundamentals of information technology
haider ali
 
PPTX
How to configure an operating system
haider ali
 
PPTX
Chapter 1 introduction to computers
haider ali
 
PPTX
Parts of-speech
haider ali
 
PPTX
Communication devices
haider ali
 
PPTX
Fundamental of Information Technology
haider ali
 
PPTX
Business in education
haider ali
 
PPTX
NETWORK Topologies
haider ali
 
PPTX
Non – verbal communication (1)
haider ali
 
PPTX
Meeting
haider ali
 
PPTX
Managing heterogeneous audience
haider ali
 
PPTX
Audience recognition
haider ali
 
Upwork freelancer guide
haider ali
 
Chapter 13 programming languages and program development
haider ali
 
Chapter 3 application software
haider ali
 
Modalauxiliaries 1
haider ali
 
Teaching tenses
haider ali
 
Tenses
haider ali
 
English parts of speech
haider ali
 
Parts of speech
haider ali
 
Fundamentals of information technology
haider ali
 
How to configure an operating system
haider ali
 
Chapter 1 introduction to computers
haider ali
 
Parts of-speech
haider ali
 
Communication devices
haider ali
 
Fundamental of Information Technology
haider ali
 
Business in education
haider ali
 
NETWORK Topologies
haider ali
 
Non – verbal communication (1)
haider ali
 
Meeting
haider ali
 
Managing heterogeneous audience
haider ali
 
Audience recognition
haider ali
 

Recently uploaded (20)

PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PPTX
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
PPTX
IT Runs Better with ThousandEyes AI-driven Assurance
ThousandEyes
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
Software Development Methodologies in 2025
KodekX
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
The Future of Artificial Intelligence (AI)
Mukul
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
OA presentation.pptx OA presentation.pptx
pateldhruv002338
 
IT Runs Better with ThousandEyes AI-driven Assurance
ThousandEyes
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
Software Development Methodologies in 2025
KodekX
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
The Future of Artificial Intelligence (AI)
Mukul
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 

Chapter 10 database management

  • 1. Your Interactive Guide to the Digital World Discovering Computers 2012
  • 2. Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe the qualities of valuable information Discuss the terms character, field, record, and file Describe file maintenance techniques and validation techniques Differentiate between a file processing approach and the database approach Discovering Computers 2012: Chapter 10 2 See Page 513 for Detailed Objectives
  • 3. Discuss the functions common to most database management systems Describe characteristics of relational, object- oriented, and multidimensional databases Explain how to access Web databases Identify database design guidelines and discuss the responsibilities of database analysts and administrators Discovering Computers 2012: Chapter 10 3 See Page 513 for Detailed Objectives
  • 4. Database •Collection of data organized in a manner that allows access, retrieval, and use of that data Data •Collection of unprocessed items •Text •Numbers •Images •Audio •Video Information •Processed data •Documents •Audio •Images •Video Discovering Computers 2012: Chapter 10 4 Page 514
  • 5. Discovering Computers 2012: Chapter 10 5 Pages 514 – 515 Figure 10-1
  • 6.  Database software, often called a database management system (DBMS), allows users to: Discovering Computers 2012: Chapter 10 6 Page 515 Create a computerized database Add, modify, and delete data Sort and retrieve data Create forms and reports from the data
  • 7.  Data integrity identifies the quality of the data  Garbage in, garbage out (GIGO) points out the accuracy of a computer’s output depends on the accuracy of the input Discovering Computers 2012: Chapter 10 7 Page 516
  • 8.  Valuable information should have the following characteristics: Discovering Computers 2012: Chapter 10 8 Pages 516 - 517 Accurate Verifiable Timely Organized Accessible Useful Cost- effective
  • 9.  Data is organized in layers  Files, records, fields, characters Discovering Computers 2012: Chapter 10 9 Page 517 Figure 10-2
  • 10.  A character is one byte  Numbers, letters, space, punctuation marks, or other symbols  A field is a combination of one or more related characters  Field name  Field size  Data type Discovering Computers 2012: Chapter 10 10 Page 518 Figure 10-3
  • 11.  Common data types include: Discovering Computers 2012: Chapter 10 11 Page 518 Text Numeric AutoNumber Currency Date Memo Yes/No Hyperlink Object Attachment
  • 12.  A record is a group of related fields  A primary key uniquely identifies each record  A data file is a collection of related records Discovering Computers 2012: Chapter 10 12 Page 519 Figure 10-4
  • 13.  File maintenance refers to the procedures that keep data current Discovering Computers 2012: Chapter 10 13 Page 520 Adding records Modifying records Deleting records
  • 14.  Users add new records to a file when they obtain new data Discovering Computers 2012: Chapter 10 14 Page 520 Figure 10-5
  • 15.  Users modify a record to correct inaccurate data or update old data Discovering Computers 2012: Chapter 10 15 Page 521 Figure 10-6
  • 16.  When a record no longer is needed, a user deletes it from a file Discovering Computers 2012: Chapter 10 16 Page 522 Figure 10-7
  • 17.  Validation compares data with a set of rules or values to find out if the data is correct Discovering Computers 2012: Chapter 10 17 Pages 522 - 524 Alphabetic/Numeric check Range check Consistency check Completeness check Check digit Other checks
  • 18. File processing system •Each department has its own set of files •Used for many years •Have data redundancy •Isolate data Database approach •Programs and users share data •Reduce data redundancy •Improve data integrity •Share data •Allows easier access •Reduces development time •Can be more vulnerable Discovering Computers 2012: Chapter 10 18 Pages 524 - 526
  • 19. Discovering Computers 2012: Chapter 10 19 Page 525 Figure 10-10
  • 20. Discovering Computers 2012: Chapter 10 20 Page 527 Figure 10-11
  • 21.  A data dictionary contains data about each file in the database and each field in those files Discovering Computers 2012: Chapter 10 21 Pages 527 – 528 Figure 10-12
  • 22.  A DBMS provides several tools that allow users and programs to retrieve and maintain data in the database Discovering Computers 2012: Chapter 10 22 Page 528 Query language Query by example Form Report generator
  • 23.  A query language consists of simple, English-like statements that allow users to specify the data to display, print, or store  Query by example (QBE) provides a GUI to assist users with retrieving data Discovering Computers 2012: Chapter 10 23 Page 528
  • 24. Discovering Computers 2012: Chapter 10 24 Page 529 Figure 10-13
  • 25.  A form is a window on the screen that provides areas for entering or modifying data in a database Discovering Computers 2012: Chapter 10 25 Page 530 Figure 10-15
  • 26.  A report generator allows users to design a report on the screen, retrieve data into the report design, and then display or print the report Discovering Computers 2012: Chapter 10 26 Page 531 Figure 10-16
  • 27. A DBMS provides means to ensure that only authorized users access data at permitted times •Access privileges •Principle of least privilege Discovering Computers 2012: Chapter 10 27 Page 531
  • 28.  A DMBS provides a variety of techniques to restore the database to a usable form in case it is damaged or destroyed Discovering Computers 2012: Chapter 10 28 Pages 531 - 532 Backup Log Recovery utility Continuous backup
  • 29. Discovering Computers 2012: Chapter 10 29 Page 532 Figure 10-17
  • 30.  A data model consists of rules and standards that define how the database organizes data Discovering Computers 2012: Chapter 10 30 Page 533 Figure 10-18
  • 31.  A relational database stores data in tables that consist of rows and columns  Each row has a primary key  Each column has a unique name  A relationship is a link within the data Discovering Computers 2012: Chapter 10 31 Page 533 Figure 10-20
  • 32.  Structured Query Language (SQL) is a query language that allows users to manage, update, and retrieve data Discovering Computers 2012: Chapter 10 32 Page 534 Figure 10-21
  • 33.  An object-oriented database (OODB) stores data in objects  Examples of applications appropriate for an object- oriented database include: Discovering Computers 2012: Chapter 10 33 Page 534 Multimedia database Groupware database Computer- aided design database Hypertext database
  • 34. Discovering Computers 2012: Chapter 10 34 Page 535 Figure 10-22
  • 35.  A multidimensional database can store data in more than two dimensions of data  Sometimes known as a hypercube  Can consolidate data much faster than a relational database  A data warehouse is a huge database that stores and manages the data required to analyze historical and current transactions Discovering Computers 2012: Chapter 10 35 Pages 535 - 536
  • 36.  Databases on the Web allow you to: Discovering Computers 2012: Chapter 10 36 Page 536 Shop for products or services Buy or sell stocks Search for a job Make airline reservations Register for college classes Check semester grades
  • 37. Discovering Computers 2012: Chapter 10 37 Page 536 Figure 10-23
  • 38.  It is important to have a carefully designed database Discovering Computers 2012: Chapter 10 38 Page 537 Figure 10-24
  • 39. Database analysts and administrators are responsible for managing and coordinating all database activities Database Analyst (DA) Decides on proper field placement, defines data relationship, and identifies users’ access privileges Database Administrator (DBA) Creates and maintains the data dictionary, manages security, monitors performance, and checks backup and recovery procedures Discovering Computers 2012: Chapter 10 39 Page 538
  • 40.  Employees should learn how to use the data in the database effectively  Interact with database  Identify new data for the database  Maintain the database Discovering Computers 2012: Chapter 10 40 Page 538 Figure 10-25
  • 41. 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 Roles of the database analysts and administrators Discovering Computers 2012: Chapter 10 41 Page 539
  • 42. Your Interactive Guide to the Digital World Discovering Computers 2012 Chapter 10 Complete