SlideShare a Scribd company logo
1
Chapter 6
© Prentice Hall, 2002
The Physical Design Stage of SDLC
The Physical Design Stage of SDLC
(figures 2.4, 2.5 revisited)
(figures 2.4, 2.5 revisited)
Project Identification
and Selection
Project Initiation
and Planning
Analysis
Physical Design
Implementation
Maintenance
Logical Design
Purpose –develop technology specs
Deliverable – pgm/data structures,
technology purchases, organization
redesigns
Database activity –
physical database design
2
Chapter 6
© Prentice Hall, 2002
Physical Database Design
Physical Database Design
Purpose - translate the logical description
of data into the technical specifications for
storing and retrieving data
Goal - create a design for storing data that
will provide adequate performance and
insure database integrity, security and
recoverability
3
Chapter 6
© Prentice Hall, 2002
Figure 6.1 - Composite usage map
(Pine Valley Furniture Company)
4
Chapter 6
© Prentice Hall, 2002
Choosing Data Types
Choosing Data Types
CHAR – fixed-length character
VARCHAR2 – variable-length character
(memo)
LONG – large number
NUMBER – positive/negative number
DATE – actual date
BLOB – binary large object (good for
graphics, sound clips, etc.)
5
Chapter 6
© Prentice Hall, 2002
Figure 6.2
Example code-look-up table (Pine Valley Furniture Company)
Code saves space, but
costs an additional lookup
to obtain actual value.
6
Chapter 6
© Prentice Hall, 2002
Physical Records
Physical Records
Physical Record: A group of fields stored in
adjacent memory locations and retrieved
together as a unit
Page: The amount of data read or written in
one I/O operation
Blocking Factor: The number of physical
records per page
7
Chapter 6
© Prentice Hall, 2002
Denormalization
Denormalization
 Transforming normalized relations into unnormalized physical
record specifications
 Benefits:
– Can improve performance (speed) be reducing number of table lookups (i.e
reduce number of necessary join queries)
 Costs (due to data duplication)
– Wasted storage space
– Data integrity/consistency threats
 Common denormalization opportunities
– One-to-one relationship (Fig 6.3)
– Many-to-many relationship with attributes (Fig. 6.4)
– Reference data (1:N relationship where 1-side has data not used in any
other relationship) (Fig. 6.5)
8
Chapter 6
© Prentice Hall, 2002
Third Normal Form
Third Normal Form
ORD_NBR ORD_DTE
ZIP_ADR
CUS_NBR
CUS_NME STR_ADR
SUB_TOT FRT_AMT TAX TOT_AMT
AMOUNT
ORD_QTY
ORD_ITM_PRICE
ITM_DSC
ITM_NBR
ORD_NBR
ORD_ITM
ORD
ITM_NBR
ITM
CUS_NBR
CUS
CITY STATE
ZIP
ZIP
Derivable
Fields
=
9
Chapter 6
© Prentice Hall, 2002
Denormalization
Denormalization
(CUS table is in 2
(CUS table is in 2NF
NF
)
)
ORD_NBR ORD_DTE
ZIP_ADR
CUS_NBR
CUS_NME STR_ADR CTY_ADR STT_ADR
SUB_TOT FRT_AMT TAX TOT_AMT
AMOUNT
ORD_QTY
ORD_ITM_PRICE
ITM_DSC
ITM_NBR
ORD_NBR
ORD_ITM
ORD
ITM_NBR
ITM
CUS_NBR
CUS
10
Chapter 6
© Prentice Hall, 2002
Fig 6.5 –
A possible
denormalization
situation:
reference data
Extra table
access
required
Data duplication
11
Chapter 6
© Prentice Hall, 2002
Partitioning
Partitioning
 Horizontal Partitioning: Distributing the rows of a table
into several separate files
– Useful for situations where different users need access to different
rows
– Three types: Key Range Partitioning, Hash Partitioning, or
Composite Partitioning
 Vertical Partitioning: Distributing the columns of a table
into several separate files
– Useful for situations where different users need access to different
columns
– The primary key must be repeated in each file
 Combinations of Horizontal and Vertical
Partitions often correspond with User Schemas (user views)
12
Chapter 6
© Prentice Hall, 2002
Partitioning
Partitioning
Advantages of Partitioning:
– Records used together are grouped together
– Each partition can be optimized for performance
– Security, recovery
– Partitions stored on different disks: contention
– Take advantage of parallel processing capability
Disadvantages of Partitioning:
– Slow retrievals across partitions
– Complexity
13
Chapter 6
© Prentice Hall, 2002
Data Replication
Data Replication
Purposely storing the same data in multiple
locations of the database
Improves performance by allowing multiple
users to access the same data at the same
time with minimum contention
Sacrifices data integrity due to data
duplication
Best for data that is not updated often
14
Chapter 6
© Prentice Hall, 2002
Designing Physical Files
Designing Physical Files
 Physical File:
– A named portion of secondary memory allocated for the
purpose of storing physical records
 Constructs to link two pieces of data:
– Sequential storage.
– Pointers.
 File Organization:
– How the files are arranged on the disk.
 Access Method:
– How the data can be retrieved based on the file organization.
15
Chapter 6
© Prentice Hall, 2002
Figure 6-7 (a)
Sequential file
organization
If not sorted
Average time to find
desired record = n/2.
1
2
n
 Records of the
file are stored
in sequence by
the primary key
field values.
If sorted –
every insert or
delete requires
resort
16
Chapter 6
© Prentice Hall, 2002
Indexed File Organizations
Indexed File Organizations
 Index – a separate table that contains organization of
records for quick retrieval
 Primary keys are automatically indexed
 Oracle has a CREATE INDEX operation, and MS
ACCESS allows indexes to be created for most field
types
 Indexing approaches:
– B-tree index, Fig. 6-7b
– Bitmap index, Fig. 6-8
– Hash Index, Fig. 6-7c
– Join Index, Fig 6-9
17
Chapter 6
© Prentice Hall, 2002
Fig. 6-7b – B-tree index
uses a tree search
Average time to find desired
record = depth of the tree
Leaves of the tree
are all at same
level 
consistent access
time
18
Chapter 6
© Prentice Hall, 2002
Fig 6-7c
Hashed file or
index
organization
Hash algorithm
Usually uses division-
remainder to determine
record position. Records
with same position are
grouped in lists.
19
Chapter 6
© Prentice Hall, 2002
Fig 6-8
Bitmap index
index
organization
Bitmap saves on space requirements
Rows - possible values of the attribute
Columns - table rows
Bit indicates whether the attribute of a row has the values
20
Chapter 6
© Prentice Hall, 2002
Clustering Files
Clustering Files
 In some relational DBMSs, related records from
different tables can be stored together in the same
disk area
 Useful for improving performance of join
operations
 Primary key records of the main table are stored
adjacent to associated foreign key records of the
dependent table
 e.g. Oracle has a CREATE CLUSTER command
21
Chapter 6
© Prentice Hall, 2002
Rules for Using Indexes
Rules for Using Indexes
1. Use on larger tables
2. Index the primary key of each table
3. Index search fields (fields frequently in
WHERE clause)
4. Fields in SQL ORDER BY and GROUP
BY commands
5. When there are >100 values but not when
there are <30 values
22
Chapter 6
© Prentice Hall, 2002
Rules for Using Indexes
Rules for Using Indexes
6. DBMS may have limit on number of indexes
per table and number of bytes per indexed
field(s)
7. Null values will not be referenced from an
index
8. Use indexes heavily for non-volatile databases;
limit the use of indexes for volatile databases
Why? Because modifications (e.g. inserts, deletes)
require updates to occur in index files

More Related Content

PPT
The Database Environment Chapter 6
PPT
Ch 7 Physical D B Design
PPTX
Physical database design(database)
PPTX
Physical Database Design Database Engineering.pptx
PPTX
Designing database week ix part 1
PPTX
7 - Enterprise IT in Action
PPT
Traditional File Concepts.ppt
PPT
Unit 9 Database Design using ORACLE and SQL.PPT
The Database Environment Chapter 6
Ch 7 Physical D B Design
Physical database design(database)
Physical Database Design Database Engineering.pptx
Designing database week ix part 1
7 - Enterprise IT in Action
Traditional File Concepts.ppt
Unit 9 Database Design using ORACLE and SQL.PPT

Similar to Physical_Design system development life.PPT (20)

PPT
SIM - Mc leod ch06
PPT
The Database Environment Chapter 1
PPTX
Advance Sqlite3
PPT
D B M S Animate
PDF
Physical Database Design & Performance
PPTX
Chapter 4 Chapter Relational DB - Copy.pptx
PPT
Unit-2.ppt FOR CSE STUDENTS ENGINEERING ANF MCA
PPT
Chap17
PPTX
Physical Design and Development
PPT
James hall ch 9
DOCX
ICS Part 2 Computer Science Short Notes
PPT
DatabaseFundamentals.ppt
PPT
DatabaseFundamentals.ppt
PPTX
Relational Database Design
PPTX
Operate Database Applicationidentify ntrk handtools.pptx
PPT
Mis11e ch06
PPTX
chapter 1 HARDWARE AND NETWORKING SERVICE.pptx
PDF
A Practical Guide to Database Design.pdf
PPTX
Chapter 5
PPTX
Data Types and Physical Data Models MS Access
SIM - Mc leod ch06
The Database Environment Chapter 1
Advance Sqlite3
D B M S Animate
Physical Database Design & Performance
Chapter 4 Chapter Relational DB - Copy.pptx
Unit-2.ppt FOR CSE STUDENTS ENGINEERING ANF MCA
Chap17
Physical Design and Development
James hall ch 9
ICS Part 2 Computer Science Short Notes
DatabaseFundamentals.ppt
DatabaseFundamentals.ppt
Relational Database Design
Operate Database Applicationidentify ntrk handtools.pptx
Mis11e ch06
chapter 1 HARDWARE AND NETWORKING SERVICE.pptx
A Practical Guide to Database Design.pdf
Chapter 5
Data Types and Physical Data Models MS Access
Ad

More from ubaidullah75790 (20)

PPTX
Chapter20 transaction processing system .pptx
PPTX
Chapter22 database security in dbms.pptx
PPTX
Chapter27 distributed database syst.pptx
PPTX
File Organization in database management.pptx
PPTX
transaction processing databse management.pptx
PPT
physical database design distributed .ppt
PPT
module03-ipaddr ipv6 addressing in net.ppt
PPT
PDBD- Part2 physical database design.ppt
PPT
S3 application and network attacks in.ppt
PPT
Chapter 5 cyber security in computer.ppt
PPTX
1606802425-dba-w7 database management.pptx
PPT
ENCh18 database management system ss.ppt
PPT
Chapter07 database system in computer.ppt
PPT
Chapter05 database sytem in computer . ppt
PPT
Chapter04 database system in computer.ppt
PPT
Chapter03 database system in computer.ppt
PPT
Chapter02 database system in computer.ppt
PPT
Chapter01 database system in computer.ppt
PPT
MYCH8 database management system in .ppt
PPT
ch1 database management system in data.ppt
Chapter20 transaction processing system .pptx
Chapter22 database security in dbms.pptx
Chapter27 distributed database syst.pptx
File Organization in database management.pptx
transaction processing databse management.pptx
physical database design distributed .ppt
module03-ipaddr ipv6 addressing in net.ppt
PDBD- Part2 physical database design.ppt
S3 application and network attacks in.ppt
Chapter 5 cyber security in computer.ppt
1606802425-dba-w7 database management.pptx
ENCh18 database management system ss.ppt
Chapter07 database system in computer.ppt
Chapter05 database sytem in computer . ppt
Chapter04 database system in computer.ppt
Chapter03 database system in computer.ppt
Chapter02 database system in computer.ppt
Chapter01 database system in computer.ppt
MYCH8 database management system in .ppt
ch1 database management system in data.ppt
Ad

Recently uploaded (20)

PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Classroom Observation Tools for Teachers
PDF
RMMM.pdf make it easy to upload and study
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Pre independence Education in Inndia.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
TR - Agricultural Crops Production NC III.pdf
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
Classroom Observation Tools for Teachers
RMMM.pdf make it easy to upload and study
102 student loan defaulters named and shamed – Is someone you know on the list?
O5-L3 Freight Transport Ops (International) V1.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
human mycosis Human fungal infections are called human mycosis..pptx
Pre independence Education in Inndia.pdf
Anesthesia in Laparoscopic Surgery in India
Microbial disease of the cardiovascular and lymphatic systems
Module 4: Burden of Disease Tutorial Slides S2 2025
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Final Presentation General Medicine 03-08-2024.pptx
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
TR - Agricultural Crops Production NC III.pdf

Physical_Design system development life.PPT

  • 1. 1 Chapter 6 © Prentice Hall, 2002 The Physical Design Stage of SDLC The Physical Design Stage of SDLC (figures 2.4, 2.5 revisited) (figures 2.4, 2.5 revisited) Project Identification and Selection Project Initiation and Planning Analysis Physical Design Implementation Maintenance Logical Design Purpose –develop technology specs Deliverable – pgm/data structures, technology purchases, organization redesigns Database activity – physical database design
  • 2. 2 Chapter 6 © Prentice Hall, 2002 Physical Database Design Physical Database Design Purpose - translate the logical description of data into the technical specifications for storing and retrieving data Goal - create a design for storing data that will provide adequate performance and insure database integrity, security and recoverability
  • 3. 3 Chapter 6 © Prentice Hall, 2002 Figure 6.1 - Composite usage map (Pine Valley Furniture Company)
  • 4. 4 Chapter 6 © Prentice Hall, 2002 Choosing Data Types Choosing Data Types CHAR – fixed-length character VARCHAR2 – variable-length character (memo) LONG – large number NUMBER – positive/negative number DATE – actual date BLOB – binary large object (good for graphics, sound clips, etc.)
  • 5. 5 Chapter 6 © Prentice Hall, 2002 Figure 6.2 Example code-look-up table (Pine Valley Furniture Company) Code saves space, but costs an additional lookup to obtain actual value.
  • 6. 6 Chapter 6 © Prentice Hall, 2002 Physical Records Physical Records Physical Record: A group of fields stored in adjacent memory locations and retrieved together as a unit Page: The amount of data read or written in one I/O operation Blocking Factor: The number of physical records per page
  • 7. 7 Chapter 6 © Prentice Hall, 2002 Denormalization Denormalization  Transforming normalized relations into unnormalized physical record specifications  Benefits: – Can improve performance (speed) be reducing number of table lookups (i.e reduce number of necessary join queries)  Costs (due to data duplication) – Wasted storage space – Data integrity/consistency threats  Common denormalization opportunities – One-to-one relationship (Fig 6.3) – Many-to-many relationship with attributes (Fig. 6.4) – Reference data (1:N relationship where 1-side has data not used in any other relationship) (Fig. 6.5)
  • 8. 8 Chapter 6 © Prentice Hall, 2002 Third Normal Form Third Normal Form ORD_NBR ORD_DTE ZIP_ADR CUS_NBR CUS_NME STR_ADR SUB_TOT FRT_AMT TAX TOT_AMT AMOUNT ORD_QTY ORD_ITM_PRICE ITM_DSC ITM_NBR ORD_NBR ORD_ITM ORD ITM_NBR ITM CUS_NBR CUS CITY STATE ZIP ZIP Derivable Fields =
  • 9. 9 Chapter 6 © Prentice Hall, 2002 Denormalization Denormalization (CUS table is in 2 (CUS table is in 2NF NF ) ) ORD_NBR ORD_DTE ZIP_ADR CUS_NBR CUS_NME STR_ADR CTY_ADR STT_ADR SUB_TOT FRT_AMT TAX TOT_AMT AMOUNT ORD_QTY ORD_ITM_PRICE ITM_DSC ITM_NBR ORD_NBR ORD_ITM ORD ITM_NBR ITM CUS_NBR CUS
  • 10. 10 Chapter 6 © Prentice Hall, 2002 Fig 6.5 – A possible denormalization situation: reference data Extra table access required Data duplication
  • 11. 11 Chapter 6 © Prentice Hall, 2002 Partitioning Partitioning  Horizontal Partitioning: Distributing the rows of a table into several separate files – Useful for situations where different users need access to different rows – Three types: Key Range Partitioning, Hash Partitioning, or Composite Partitioning  Vertical Partitioning: Distributing the columns of a table into several separate files – Useful for situations where different users need access to different columns – The primary key must be repeated in each file  Combinations of Horizontal and Vertical Partitions often correspond with User Schemas (user views)
  • 12. 12 Chapter 6 © Prentice Hall, 2002 Partitioning Partitioning Advantages of Partitioning: – Records used together are grouped together – Each partition can be optimized for performance – Security, recovery – Partitions stored on different disks: contention – Take advantage of parallel processing capability Disadvantages of Partitioning: – Slow retrievals across partitions – Complexity
  • 13. 13 Chapter 6 © Prentice Hall, 2002 Data Replication Data Replication Purposely storing the same data in multiple locations of the database Improves performance by allowing multiple users to access the same data at the same time with minimum contention Sacrifices data integrity due to data duplication Best for data that is not updated often
  • 14. 14 Chapter 6 © Prentice Hall, 2002 Designing Physical Files Designing Physical Files  Physical File: – A named portion of secondary memory allocated for the purpose of storing physical records  Constructs to link two pieces of data: – Sequential storage. – Pointers.  File Organization: – How the files are arranged on the disk.  Access Method: – How the data can be retrieved based on the file organization.
  • 15. 15 Chapter 6 © Prentice Hall, 2002 Figure 6-7 (a) Sequential file organization If not sorted Average time to find desired record = n/2. 1 2 n  Records of the file are stored in sequence by the primary key field values. If sorted – every insert or delete requires resort
  • 16. 16 Chapter 6 © Prentice Hall, 2002 Indexed File Organizations Indexed File Organizations  Index – a separate table that contains organization of records for quick retrieval  Primary keys are automatically indexed  Oracle has a CREATE INDEX operation, and MS ACCESS allows indexes to be created for most field types  Indexing approaches: – B-tree index, Fig. 6-7b – Bitmap index, Fig. 6-8 – Hash Index, Fig. 6-7c – Join Index, Fig 6-9
  • 17. 17 Chapter 6 © Prentice Hall, 2002 Fig. 6-7b – B-tree index uses a tree search Average time to find desired record = depth of the tree Leaves of the tree are all at same level  consistent access time
  • 18. 18 Chapter 6 © Prentice Hall, 2002 Fig 6-7c Hashed file or index organization Hash algorithm Usually uses division- remainder to determine record position. Records with same position are grouped in lists.
  • 19. 19 Chapter 6 © Prentice Hall, 2002 Fig 6-8 Bitmap index index organization Bitmap saves on space requirements Rows - possible values of the attribute Columns - table rows Bit indicates whether the attribute of a row has the values
  • 20. 20 Chapter 6 © Prentice Hall, 2002 Clustering Files Clustering Files  In some relational DBMSs, related records from different tables can be stored together in the same disk area  Useful for improving performance of join operations  Primary key records of the main table are stored adjacent to associated foreign key records of the dependent table  e.g. Oracle has a CREATE CLUSTER command
  • 21. 21 Chapter 6 © Prentice Hall, 2002 Rules for Using Indexes Rules for Using Indexes 1. Use on larger tables 2. Index the primary key of each table 3. Index search fields (fields frequently in WHERE clause) 4. Fields in SQL ORDER BY and GROUP BY commands 5. When there are >100 values but not when there are <30 values
  • 22. 22 Chapter 6 © Prentice Hall, 2002 Rules for Using Indexes Rules for Using Indexes 6. DBMS may have limit on number of indexes per table and number of bytes per indexed field(s) 7. Null values will not be referenced from an index 8. Use indexes heavily for non-volatile databases; limit the use of indexes for volatile databases Why? Because modifications (e.g. inserts, deletes) require updates to occur in index files