SlideShare a Scribd company logo
1 of 53
Systems Analysis & Design
Sixth Edition
Systems Analysis & Design
Sixth Edition
Chapter 7
2
2
2
2
Chapter Objectives
● Explain data design concepts and data
structures
● Describe file processing systems and
various types of files
● Understand database systems and
define the components of a database
management system (DBMS)
● Describe Web-based data design
3
3
3
3
Chapter Objectives
● Explain data design terminology,
including entities, fields, common fields,
records, files, tables, and key fields
● Describe data relationships, draw an
entity-relationship diagram, define
cardinality, and use cardinality notation
● Explain the concept of normalization
● Explain the importance of codes and
describe various coding schemes
4
4
4
4
Chapter Objectives
● Describe relational and object-oriented
database models
● Explain data warehousing and data
mining
● Differentiate between logical and
physical storage and records
● Explain data control measures
5
5
5
5
Introduction
● You will develop a physical plan for data
organization, storage, and retrieval
● Begins with a review of data design concepts
and terminology, then discusses file-based
systems and database systems, including Web-
based databases
● Concludes with a discussion of data storage
and access, including strategic tools such as
data warehousing and data mining, physical
design issues, logical and physical records,
data storage formats, and data control
6
6
6
6
Data Design Concepts
● Data Structures
– A file or table contains data about people,
places, things, or events that interact with the
system
– File-oriented system
– File processing system
– Database system
7
7
7
7
Data Design Concepts
● Overview of File Processing
– Potential problems
• Data redundancy
• Data integrity
• Rigid data structure
8
8
8
8
Data Design Concepts
● Overview of File Processing
– Uses various types of files
• Master file
• Table file
• Transaction file
• Work file – scratch file
• Security file
• History file
9
9
9
9
Data Design Concepts
● Overview of Database Systems
– A properly design database system offers a
solution to the problems of file processing
– Provides an overall framework that avoids data
redundancy and supports a real-time, dynamic
environment
– Database management system (DBMS)
– The main advantage of a DBMS is that it offers
timely, interactive, and flexible data access
10
10
10
10
Data Design Concepts
● Overview of Database Systems
– Advantages
• Scalability
• Better support for client/server systems
• Economy of scale
• Flexible data sharing
• Enterprise-wide application – database administrator
(DBA)
• Stronger standards
11
11
11
11
Data Design Concepts
● Overview of Database Systems
– Advantages
• Controlled redundancy
• Better security
• Increased programmer productivity
• Data independence
12
12
12
12
Data Design Concepts
● Database Tradeoffs
– Because DBMSs are powerful, they require
more expensive hardware, software, and data
networks capable of supporting a multi-user
environment
– More complex than a file processing system
– Procedures for security, backup, and recovery
are more complicated and critical
13
13
13
13
DBMS Components
● Interfaces for Users, Database
Administrators, and Related Systems
– Users
• Query language
• Query by example (QBE)
• SQL (structured query language)
– Database Administrators
• A DBA is responsible for DBMS management and
support
14
14
14
14
DBMS Components
● Interfaces for Users, Database
Administrators, and Related Systems
– Related information systems
• A DBMS can support several related information
systems that provide input to, and require specific data
from, the DBMS
15
15
15
15
DBMS Components
● Data Manipulation Language
– A data manipulation language (DML) controls
database operations, including storing,
retrieving, updating, and deleting data
● Schema
– The complete definition of a database, including
descriptions of all fields, tables, and
relationships, is called a schema
– You also can define one or more subschemas
16
16
16
16
DBMS Components
● Physical Data Repository
– The data dictionary is transformed into a
physical data repository, which also contains the
schema and subschemas
– The physical repository might be centralized, or
distributed at several locations
– ODBC – open database connectivity
– JDBC – Java database connectivity
17
17
17
17
Web-Based Database Design
● Characteristics of Web-Based Design
– In a Web-based design, the Internet serves
as the front end, or interface, for the database
management system
– Internet technology provides enormous power
and flexibility
– Web-based systems are popular because
they offer ease of access, cost-effectiveness,
and worldwide connectivity
18
18
18
18
Web-Based Database Design
● Internet Terminology
– Web browser
– Web page
– HTML – Hypertext Markup Language
– Tags
– Web server
– Web site
– Intranet
19
19
19
19
Web-Based Database Design
● Internet Terminology
– Extranet
– Protocols
– Web-centric
– Clients
– Servers
20
20
20
20
Web-Based Database Design
● Connecting a Database to the Web
– Database must be connected to the Internet or
intranet
• Middleware
• Macromedia’s ColdFusion
21
21
21
21
Web-Based Database Design
● Data Security
– Web-based data must be totally secure, yet
easily accessible to authorized users
– To achieve this goal, well-designed systems
provide security at three levels: the database
itself, the Web server, and the
telecommunication links that connect the
components of the system
22
22
22
22
Data Design Terminology
● Definitions
– Entity
– Table or file
– Field
• Attribute
• Common field
– Record
• Tuple
23
23
23
23
Data Design Terminology
● Key Fields
– Primary key
• Combination key
• Composite key
• Concatenated key
• Multi-valued key
– Candidate key
• Nonkey field
– Foreign key
– Secondary key
24
24
24
24
Data Design Terminology
● Referential Integrity
– Validity checks can help avoid data input errors
25
25
25
25
Entity-Relationship Diagrams
● An entity is a person, place, thing, or
event for which data is collected and
maintained
● Provides an overall view of the system,
and a blueprint for creating the physical
data structures
● Entity-relationship diagram
26
26
26
26
Entity-Relationship Diagrams
● Drawing an ERD
– The first step is to list
the entities that you
identified during the
fact-finding process
and to consider the
nature of the
relationships that link
them
27
27
27
27
Entity-Relationship Diagrams
● Types of Relationships
– One-to-one relationship (1:1)
– One-to-many relationship (1:M)
– Many-to-many relationship (M:N)
• Associative entity
● Cardinality
• Cardinality notation
• Crow’s foot notation
• Unified Modeling Language (UML)
28
28
28
28
Normalization
● Table design
● Involves four stages: unnormalized
design, first normal form, second normal
form, and third normal form
● Most business-related databases must
be designed in third normal form
29
29
29
29
Normalization
● Standard Notation Format
– Designing tables is easier if you use a
standard notation format to show a table’s
structure, fields, and primary key
Example: NAME (FIELD 1, FIELD 2, FIELD 3)
30
30
30
30
Normalization
● Repeating Groups and Unnormalized
Designs
– Repeating group
• Often occur in manual documents prepared by users
– Unnormalized design
31
31
31
31
Normalization
● First Normal Form
– A table is in first normal form (1NF) if it does not
contain a repeating group
– To convert, you must expand the table’s primary
key to include the primary key of the repeating
group
● Second Normal Form
– To understand second normal form (2NF), you
must understand the concept of functional
dependence
– Functionally dependent
32
32
32
32
Normalization
● Second Normal Form
– A standard process exists for converting a
table from 1NF to 2NF
1. Create and name a separate table for each field in
the existing primary key
2. Create a new table for each possible combination of
the original primary key fields
3. Study the three tables and place each field with its
appropriate primary key
33
33
33
33
Normalization
● Second Normal Form
– Four kinds of problems are found with 1NF
designs that do not exist in 2NF
• Consider the work necessary to change a particular
product’s description
• 1NF tables can contain inconsistent data
• Adding a new product is a problem
• Deleting a product is a problem
34
34
34
34
Normalization
● Third Normal Form
– 3NF design avoids redundancy and data
integrity problems that still can exist in 2NF
designs
– A table design is in third normal form (3NF) if it is
in 2NF and if no nonkey field is dependent on
another nonkey field
– To convert the table to 3NF, you must remove all
fields from the 2NF table that depend on another
nonkey field and place them in a new table that
uses the nonkey field as a primary key
35
35
35
35
Normalization
● A Normalization
Example
– To show the
normalization process,
consider the familiar
situation, which depicts
several entities in a
school advising system:
ADVISOR, COURSE,
and STUDENT
36
36
36
36
Using Codes During Data Design
● Overview of Codes
– Because codes often are used to represent
data, you encounter them constantly in your
everyday life
– They save storage space and costs, reduce
transmission time, and decrease data entry time
– Can reduce data input errors
37
37
37
37
Using Codes During Data Design
● Types of Codes
1. Sequence codes
2. Block sequence codes
3. Alphabetic codes
a. Category codes
b. Abbreviation codes – mnemonic codes
4. Significant digit codes
5. Derivation codes
6. Cipher codes
7. Action codes
38
38
38
38
Using Codes During Data Design
● Developing a Code
1. Keep codes concise
2. Allow for expansion
3. Keep codes stable
4. Make codes unique
5. Use sortable codes
6. Avoid confusing codes
7. Make codes meaningful
8. Use a code for a single purpose
9. Keep codes consistent
39
39
39
39
Steps in Database Design
1. Create the initial ERD
2. Assign all data elements to entities
3. Create 3NF designs for all tables, taking
care to identify all primary, secondary,
and foreign keys
4. Verify all data dictionary entries
5. After creating your final ERD and
normalized table designs, you can
transform them into a database
40
40
40
40
Database Models
● Relational Databases
– The relational model was introduced during the
1970s and became popular because it was
flexible and powerful
– Because all the tables are linked, a user can
request data that meets specific conditions
– New entities and attributes can be added at any
time without restructuring the entire database
41
41
41
41
Database Models
● Object-Oriented Databases
– Many systems developers are using object-
oriented database (OODB) design as a natural
extension of the object-oriented analysis process
• Object Data standard
• Object Database Management Group (ODMG)
• Each object has a unique object identifier
42
42
42
42
Data Storage and Access
● Data storage and access involve strategic
business tools
● Strategic tools for data storage and access
– Data warehouse - dimensions
43
43
43
43
Data Storage and Access
● Strategic tools for data storage and
access
– Data Mining
• Increase average pages viewed per session
• Increase number of referred customers
• Reduce clicks to close
• Increase checkouts per visit
• Increase average profit per checkout
44
44
44
44
Data Storage and Access
● Logical and Physical Storage
– Logical storage
• Characters
• Data element or data item
• Logical record
– Physical storage
• Physical record or block
• Buffer
• Blocking factor
45
45
45
45
Data Storage and Access
● Data Storage Formats
– Binary digits
– Bit
– Byte
– EBCDIC and ASCII
– Unicode
46
46
46
46
Data Storage and Access
● Data Storage Formats
– Binary
• Binary storage format
• Integer format
• Long integer format
• Other binary formats exist for efficient storage of
exceedingly long numbers
47
47
47
47
Data Storage and Access
● Selecting a Data Storage Format
– In many cases, a user can select a specific
data storage format
– For example, when using Microsoft Office,
you can store documents, spreadsheets, and
databases in Unicode-compatible form by
using the font called Arial Unicode MS
– Best answer is it depends on the situation
48
48
48
48
Data Storage and Access
● Date Fields
– Most date formats now are based on the
model established by the International
Organization for Standardization (ISO)
– Can be sorted easily and used in
comparisons
– Absolute date
– Best method depends on how the specific
date will be printed, displayed, or used in a
calculation
49
49
49
49
Data Control
● File and database control must include
all measures necessary to ensure that
data storage is correct, complete, and
secure
● A well-designed DBMS must provide
built-in control and security features,
including subschemas, passwords,
encryption, audit trail files, and backup
and recovery procedures to maintain
data
50
50
50
50
Data Control
● User ID
● Password
● Permissions
● Encryption
● Backup
● Recovery procedures
● Audit log files
● Audit fields
51
51
51
51
Chapter Summary
● Files and tables contain data about
people, places, things, or events that
affect the information system
● DBMS designs are more powerful and
flexible than traditional file-oriented
systems
52
52
52
52
Chapter Summary
● Data design tasks include creating an
initial ERD; assigning data elements to
an entity; normalizing all table designs;
and completing the data dictionary
entries for files, records, and data
elements
● Logical storage is information seen
through a user’s eyes, regardless of
how or where that information actually
is organized or stored
53
53
53
53
Chapter Summary
● Physical storage is hardware-related and
involves reading and writing blocks of
binary data to physical media
● File and database control measures
include limiting access to the data, data
encryption, backup/recovery procedures,
audit-trail files, and internal audit fields
● Chapter 7 complete

More Related Content

Similar to BUS-Chapter 07.ppt

02010 ppt ch02
02010 ppt ch0202010 ppt ch02
02010 ppt ch02
Hpong Js
 
Week 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxWeek 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptx
Riannel Tecson
 
NoSQL-Database-Concepts
NoSQL-Database-ConceptsNoSQL-Database-Concepts
NoSQL-Database-Concepts
Bhaskar Gunda
 

Similar to BUS-Chapter 07.ppt (20)

ITE 101 - Week 7
ITE 101 - Week 7ITE 101 - Week 7
ITE 101 - Week 7
 
6846222.pdf
6846222.pdf6846222.pdf
6846222.pdf
 
unit 1.pdf
unit 1.pdfunit 1.pdf
unit 1.pdf
 
Unit 01 dbms
Unit 01 dbmsUnit 01 dbms
Unit 01 dbms
 
Dbms
DbmsDbms
Dbms
 
Unit01 dbms 2
Unit01 dbms 2Unit01 dbms 2
Unit01 dbms 2
 
INTRODUCTION OF DATA BASE
INTRODUCTION OF DATA BASEINTRODUCTION OF DATA BASE
INTRODUCTION OF DATA BASE
 
01-database-management.pptx
01-database-management.pptx01-database-management.pptx
01-database-management.pptx
 
02010 ppt ch02
02010 ppt ch0202010 ppt ch02
02010 ppt ch02
 
dbms unit-1
dbms unit-1dbms unit-1
dbms unit-1
 
Data base management system (dbms)
Data base management system (dbms)Data base management system (dbms)
Data base management system (dbms)
 
Uc13.chapter.14
Uc13.chapter.14Uc13.chapter.14
Uc13.chapter.14
 
Rdbms
RdbmsRdbms
Rdbms
 
DBMS.ppt
DBMS.pptDBMS.ppt
DBMS.ppt
 
Business intelligence and data warehouses
Business intelligence and data warehousesBusiness intelligence and data warehouses
Business intelligence and data warehouses
 
Data models
Data modelsData models
Data models
 
MS ACCESS.pptx
MS ACCESS.pptxMS ACCESS.pptx
MS ACCESS.pptx
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to database
 
Week 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxWeek 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptx
 
NoSQL-Database-Concepts
NoSQL-Database-ConceptsNoSQL-Database-Concepts
NoSQL-Database-Concepts
 

More from MinilikDerseh1 (6)

BASIC PROBABILITY distribution - Copy.pptx
BASIC PROBABILITY distribution - Copy.pptxBASIC PROBABILITY distribution - Copy.pptx
BASIC PROBABILITY distribution - Copy.pptx
 
categorical data analysis in r studioppt.pptx
categorical data analysis in r studioppt.pptxcategorical data analysis in r studioppt.pptx
categorical data analysis in r studioppt.pptx
 
Categorical data analysis full lecture note PPT.pptx
Categorical data analysis full lecture note  PPT.pptxCategorical data analysis full lecture note  PPT.pptx
Categorical data analysis full lecture note PPT.pptx
 
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptxUNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
UNIT-2 Quantitaitive Anlaysis for Mgt Decisions.pptx
 
15minute-math-integers.ppt
15minute-math-integers.ppt15minute-math-integers.ppt
15minute-math-integers.ppt
 
ppt final final.pptx
ppt final final.pptxppt final final.pptx
ppt final final.pptx
 

Recently uploaded

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
MateoGardella
 

Recently uploaded (20)

Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 

BUS-Chapter 07.ppt

  • 1. Systems Analysis & Design Sixth Edition Systems Analysis & Design Sixth Edition Chapter 7
  • 2. 2 2 2 2 Chapter Objectives ● Explain data design concepts and data structures ● Describe file processing systems and various types of files ● Understand database systems and define the components of a database management system (DBMS) ● Describe Web-based data design
  • 3. 3 3 3 3 Chapter Objectives ● Explain data design terminology, including entities, fields, common fields, records, files, tables, and key fields ● Describe data relationships, draw an entity-relationship diagram, define cardinality, and use cardinality notation ● Explain the concept of normalization ● Explain the importance of codes and describe various coding schemes
  • 4. 4 4 4 4 Chapter Objectives ● Describe relational and object-oriented database models ● Explain data warehousing and data mining ● Differentiate between logical and physical storage and records ● Explain data control measures
  • 5. 5 5 5 5 Introduction ● You will develop a physical plan for data organization, storage, and retrieval ● Begins with a review of data design concepts and terminology, then discusses file-based systems and database systems, including Web- based databases ● Concludes with a discussion of data storage and access, including strategic tools such as data warehousing and data mining, physical design issues, logical and physical records, data storage formats, and data control
  • 6. 6 6 6 6 Data Design Concepts ● Data Structures – A file or table contains data about people, places, things, or events that interact with the system – File-oriented system – File processing system – Database system
  • 7. 7 7 7 7 Data Design Concepts ● Overview of File Processing – Potential problems • Data redundancy • Data integrity • Rigid data structure
  • 8. 8 8 8 8 Data Design Concepts ● Overview of File Processing – Uses various types of files • Master file • Table file • Transaction file • Work file – scratch file • Security file • History file
  • 9. 9 9 9 9 Data Design Concepts ● Overview of Database Systems – A properly design database system offers a solution to the problems of file processing – Provides an overall framework that avoids data redundancy and supports a real-time, dynamic environment – Database management system (DBMS) – The main advantage of a DBMS is that it offers timely, interactive, and flexible data access
  • 10. 10 10 10 10 Data Design Concepts ● Overview of Database Systems – Advantages • Scalability • Better support for client/server systems • Economy of scale • Flexible data sharing • Enterprise-wide application – database administrator (DBA) • Stronger standards
  • 11. 11 11 11 11 Data Design Concepts ● Overview of Database Systems – Advantages • Controlled redundancy • Better security • Increased programmer productivity • Data independence
  • 12. 12 12 12 12 Data Design Concepts ● Database Tradeoffs – Because DBMSs are powerful, they require more expensive hardware, software, and data networks capable of supporting a multi-user environment – More complex than a file processing system – Procedures for security, backup, and recovery are more complicated and critical
  • 13. 13 13 13 13 DBMS Components ● Interfaces for Users, Database Administrators, and Related Systems – Users • Query language • Query by example (QBE) • SQL (structured query language) – Database Administrators • A DBA is responsible for DBMS management and support
  • 14. 14 14 14 14 DBMS Components ● Interfaces for Users, Database Administrators, and Related Systems – Related information systems • A DBMS can support several related information systems that provide input to, and require specific data from, the DBMS
  • 15. 15 15 15 15 DBMS Components ● Data Manipulation Language – A data manipulation language (DML) controls database operations, including storing, retrieving, updating, and deleting data ● Schema – The complete definition of a database, including descriptions of all fields, tables, and relationships, is called a schema – You also can define one or more subschemas
  • 16. 16 16 16 16 DBMS Components ● Physical Data Repository – The data dictionary is transformed into a physical data repository, which also contains the schema and subschemas – The physical repository might be centralized, or distributed at several locations – ODBC – open database connectivity – JDBC – Java database connectivity
  • 17. 17 17 17 17 Web-Based Database Design ● Characteristics of Web-Based Design – In a Web-based design, the Internet serves as the front end, or interface, for the database management system – Internet technology provides enormous power and flexibility – Web-based systems are popular because they offer ease of access, cost-effectiveness, and worldwide connectivity
  • 18. 18 18 18 18 Web-Based Database Design ● Internet Terminology – Web browser – Web page – HTML – Hypertext Markup Language – Tags – Web server – Web site – Intranet
  • 19. 19 19 19 19 Web-Based Database Design ● Internet Terminology – Extranet – Protocols – Web-centric – Clients – Servers
  • 20. 20 20 20 20 Web-Based Database Design ● Connecting a Database to the Web – Database must be connected to the Internet or intranet • Middleware • Macromedia’s ColdFusion
  • 21. 21 21 21 21 Web-Based Database Design ● Data Security – Web-based data must be totally secure, yet easily accessible to authorized users – To achieve this goal, well-designed systems provide security at three levels: the database itself, the Web server, and the telecommunication links that connect the components of the system
  • 22. 22 22 22 22 Data Design Terminology ● Definitions – Entity – Table or file – Field • Attribute • Common field – Record • Tuple
  • 23. 23 23 23 23 Data Design Terminology ● Key Fields – Primary key • Combination key • Composite key • Concatenated key • Multi-valued key – Candidate key • Nonkey field – Foreign key – Secondary key
  • 24. 24 24 24 24 Data Design Terminology ● Referential Integrity – Validity checks can help avoid data input errors
  • 25. 25 25 25 25 Entity-Relationship Diagrams ● An entity is a person, place, thing, or event for which data is collected and maintained ● Provides an overall view of the system, and a blueprint for creating the physical data structures ● Entity-relationship diagram
  • 26. 26 26 26 26 Entity-Relationship Diagrams ● Drawing an ERD – The first step is to list the entities that you identified during the fact-finding process and to consider the nature of the relationships that link them
  • 27. 27 27 27 27 Entity-Relationship Diagrams ● Types of Relationships – One-to-one relationship (1:1) – One-to-many relationship (1:M) – Many-to-many relationship (M:N) • Associative entity ● Cardinality • Cardinality notation • Crow’s foot notation • Unified Modeling Language (UML)
  • 28. 28 28 28 28 Normalization ● Table design ● Involves four stages: unnormalized design, first normal form, second normal form, and third normal form ● Most business-related databases must be designed in third normal form
  • 29. 29 29 29 29 Normalization ● Standard Notation Format – Designing tables is easier if you use a standard notation format to show a table’s structure, fields, and primary key Example: NAME (FIELD 1, FIELD 2, FIELD 3)
  • 30. 30 30 30 30 Normalization ● Repeating Groups and Unnormalized Designs – Repeating group • Often occur in manual documents prepared by users – Unnormalized design
  • 31. 31 31 31 31 Normalization ● First Normal Form – A table is in first normal form (1NF) if it does not contain a repeating group – To convert, you must expand the table’s primary key to include the primary key of the repeating group ● Second Normal Form – To understand second normal form (2NF), you must understand the concept of functional dependence – Functionally dependent
  • 32. 32 32 32 32 Normalization ● Second Normal Form – A standard process exists for converting a table from 1NF to 2NF 1. Create and name a separate table for each field in the existing primary key 2. Create a new table for each possible combination of the original primary key fields 3. Study the three tables and place each field with its appropriate primary key
  • 33. 33 33 33 33 Normalization ● Second Normal Form – Four kinds of problems are found with 1NF designs that do not exist in 2NF • Consider the work necessary to change a particular product’s description • 1NF tables can contain inconsistent data • Adding a new product is a problem • Deleting a product is a problem
  • 34. 34 34 34 34 Normalization ● Third Normal Form – 3NF design avoids redundancy and data integrity problems that still can exist in 2NF designs – A table design is in third normal form (3NF) if it is in 2NF and if no nonkey field is dependent on another nonkey field – To convert the table to 3NF, you must remove all fields from the 2NF table that depend on another nonkey field and place them in a new table that uses the nonkey field as a primary key
  • 35. 35 35 35 35 Normalization ● A Normalization Example – To show the normalization process, consider the familiar situation, which depicts several entities in a school advising system: ADVISOR, COURSE, and STUDENT
  • 36. 36 36 36 36 Using Codes During Data Design ● Overview of Codes – Because codes often are used to represent data, you encounter them constantly in your everyday life – They save storage space and costs, reduce transmission time, and decrease data entry time – Can reduce data input errors
  • 37. 37 37 37 37 Using Codes During Data Design ● Types of Codes 1. Sequence codes 2. Block sequence codes 3. Alphabetic codes a. Category codes b. Abbreviation codes – mnemonic codes 4. Significant digit codes 5. Derivation codes 6. Cipher codes 7. Action codes
  • 38. 38 38 38 38 Using Codes During Data Design ● Developing a Code 1. Keep codes concise 2. Allow for expansion 3. Keep codes stable 4. Make codes unique 5. Use sortable codes 6. Avoid confusing codes 7. Make codes meaningful 8. Use a code for a single purpose 9. Keep codes consistent
  • 39. 39 39 39 39 Steps in Database Design 1. Create the initial ERD 2. Assign all data elements to entities 3. Create 3NF designs for all tables, taking care to identify all primary, secondary, and foreign keys 4. Verify all data dictionary entries 5. After creating your final ERD and normalized table designs, you can transform them into a database
  • 40. 40 40 40 40 Database Models ● Relational Databases – The relational model was introduced during the 1970s and became popular because it was flexible and powerful – Because all the tables are linked, a user can request data that meets specific conditions – New entities and attributes can be added at any time without restructuring the entire database
  • 41. 41 41 41 41 Database Models ● Object-Oriented Databases – Many systems developers are using object- oriented database (OODB) design as a natural extension of the object-oriented analysis process • Object Data standard • Object Database Management Group (ODMG) • Each object has a unique object identifier
  • 42. 42 42 42 42 Data Storage and Access ● Data storage and access involve strategic business tools ● Strategic tools for data storage and access – Data warehouse - dimensions
  • 43. 43 43 43 43 Data Storage and Access ● Strategic tools for data storage and access – Data Mining • Increase average pages viewed per session • Increase number of referred customers • Reduce clicks to close • Increase checkouts per visit • Increase average profit per checkout
  • 44. 44 44 44 44 Data Storage and Access ● Logical and Physical Storage – Logical storage • Characters • Data element or data item • Logical record – Physical storage • Physical record or block • Buffer • Blocking factor
  • 45. 45 45 45 45 Data Storage and Access ● Data Storage Formats – Binary digits – Bit – Byte – EBCDIC and ASCII – Unicode
  • 46. 46 46 46 46 Data Storage and Access ● Data Storage Formats – Binary • Binary storage format • Integer format • Long integer format • Other binary formats exist for efficient storage of exceedingly long numbers
  • 47. 47 47 47 47 Data Storage and Access ● Selecting a Data Storage Format – In many cases, a user can select a specific data storage format – For example, when using Microsoft Office, you can store documents, spreadsheets, and databases in Unicode-compatible form by using the font called Arial Unicode MS – Best answer is it depends on the situation
  • 48. 48 48 48 48 Data Storage and Access ● Date Fields – Most date formats now are based on the model established by the International Organization for Standardization (ISO) – Can be sorted easily and used in comparisons – Absolute date – Best method depends on how the specific date will be printed, displayed, or used in a calculation
  • 49. 49 49 49 49 Data Control ● File and database control must include all measures necessary to ensure that data storage is correct, complete, and secure ● A well-designed DBMS must provide built-in control and security features, including subschemas, passwords, encryption, audit trail files, and backup and recovery procedures to maintain data
  • 50. 50 50 50 50 Data Control ● User ID ● Password ● Permissions ● Encryption ● Backup ● Recovery procedures ● Audit log files ● Audit fields
  • 51. 51 51 51 51 Chapter Summary ● Files and tables contain data about people, places, things, or events that affect the information system ● DBMS designs are more powerful and flexible than traditional file-oriented systems
  • 52. 52 52 52 52 Chapter Summary ● Data design tasks include creating an initial ERD; assigning data elements to an entity; normalizing all table designs; and completing the data dictionary entries for files, records, and data elements ● Logical storage is information seen through a user’s eyes, regardless of how or where that information actually is organized or stored
  • 53. 53 53 53 53 Chapter Summary ● Physical storage is hardware-related and involves reading and writing blocks of binary data to physical media ● File and database control measures include limiting access to the data, data encryption, backup/recovery procedures, audit-trail files, and internal audit fields ● Chapter 7 complete