+ All Categories
Home > Documents > Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th...

Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th...

Date post: 26-Dec-2015
Category:
Upload: marybeth-taylor
View: 260 times
Download: 3 times
Share this document with a friend
39
Chapter 6 Chapter 6: Chapter 6: Physical Database Design Physical Database Design and Performance and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden © 2007 by Prentice Hall 1
Transcript
Page 1: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Chapter 6:Chapter 6:Physical Database Design and Physical Database Design and

PerformancePerformance

Modern Database Management8th Edition

Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden

© 2007 by Prentice Hall 1

Page 2: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

ObjectivesObjectives• Definition of termsDefinition of terms• Describe the physical database design processDescribe the physical database design process• Choose storage formats for attributesChoose storage formats for attributes• Select appropriate file organizationsSelect appropriate file organizations• Describe three types of file organizationDescribe three types of file organization• Describe indexes and their appropriate useDescribe indexes and their appropriate use• Translate a database model into efficient structuresTranslate a database model into efficient structures• Know when and how to use denormalizationKnow when and how to use denormalization

2

Page 3: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Physical Database DesignPhysical Database Design

• Purpose–translate the logical description of Purpose–translate the logical description of data into the data into the technical specificationstechnical specifications for for storing and retrieving datastoring and retrieving data

• Goal–create a design for storing data that will Goal–create a design for storing data that will provide provide adequate performanceadequate performance and insure and insure database integritydatabase integrity, , securitysecurity, and , and recoverabilityrecoverability

3

Page 4: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Physical Design ProcessPhysical Design Process

4

Normalized relations

Volume estimates

Attribute definitions

Response time expectations

Data security needs

Backup/recovery needs

Integrity expectations

DBMS technology used

Inputs

Attribute data types

Physical record descriptions (doesn’t always match logical design)

File organizations

Indexes and database architectures

Query optimization

Leads to

Decisions

Page 5: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 5

Figure 6-1 Composite usage map (Pine Valley Furniture Company)

Page 6: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 6

Figure 6-1 Composite usage map (Pine Valley Furniture Company) (cont.)

Data volumes

Page 7: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 7

Figure 6-1 Composite usage map (Pine Valley Furniture Company) (cont.)

Access Frequencies (per hour)

Page 8: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 8

Figure 6-1 Composite usage map (Pine Valley Furniture Company) (cont.)

Usage analysis:140 purchased parts accessed per hour 80 quotations accessed from these 140 purchased part accesses 70 suppliers accessed from these 80 quotation accesses

Page 9: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 9

Figure 6-1 Composite usage map (Pine Valley Furniture Company) (cont.)

Usage analysis:75 suppliers accessed per hour 40 quotations accessed from these 75 supplier accesses 40 purchased parts accessed from these 40 quotation accesses

Page 10: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Designing FieldsDesigning Fields

• Field: smallest unit of data in Field: smallest unit of data in databasedatabase

• Field design Field design –Choosing data typeChoosing data type–Coding, compression, encryptionCoding, compression, encryption–Controlling data integrityControlling data integrity

10

Page 11: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Choosing Data TypesChoosing Data Types

• CHAR–fixed-length characterCHAR–fixed-length character• VARCHAR2–variable-length character (memo)VARCHAR2–variable-length character (memo)• LONG–large numberLONG–large number• NUMBER–positive/negative numberNUMBER–positive/negative number• INEGER–positive/negative whole numberINEGER–positive/negative whole number• DATE–actual dateDATE–actual date• BLOB–binary large object (good for graphics, sound BLOB–binary large object (good for graphics, sound

clips, etc.)clips, etc.)

11

Page 12: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 12

Figure 6-2 Example code look-up table(Pine Valley Furniture Company)

Code saves space, but costs an additional lookup to obtain actual value

Page 13: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Field Data IntegrityField Data Integrity• Default value–assumed value if no explicit valueDefault value–assumed value if no explicit value• Range control–allowable value limitations Range control–allowable value limitations

(constraints or validation rules)(constraints or validation rules)• Null value control–allowing or prohibiting empty Null value control–allowing or prohibiting empty

fieldsfields• Referential integrity–range control (and null value Referential integrity–range control (and null value

allowances) for foreign-key to primary-key match-allowances) for foreign-key to primary-key match-upsups

13

Sarbanes-Oxley Act (SOX) legislates importance of financial data integrity

Page 14: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Handling Missing DataHandling Missing Data

• Substitute an estimate of the missing value (e.g., Substitute an estimate of the missing value (e.g., using a formula)using a formula)

• Construct a report listing missing valuesConstruct a report listing missing values• In programs, ignore missing data unless the value In programs, ignore missing data unless the value

is significant (sensitivity testing)is significant (sensitivity testing)

14

Triggers can be used to perform these operations

Page 15: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Physical RecordsPhysical Records

• Physical Record: A group of fields stored in Physical Record: A group of fields stored in adjacent memory locations and retrieved adjacent memory locations and retrieved together as a unittogether as a unit

• Page: The amount of data read or written in Page: The amount of data read or written in one I/O operationone I/O operation

• Blocking Factor: The number of physical Blocking Factor: The number of physical records per pagerecords per page

15

Page 16: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

DenormalizationDenormalization• Transforming Transforming normalizednormalized relations into relations into unnormalizedunnormalized physical physical

record specificationsrecord specifications• Benefits:Benefits:

– Can improve performance (speed) by reducing number of table lookups Can improve performance (speed) by reducing number of table lookups (i.e. (i.e. reduce number of necessary join queriesreduce number of necessary join queries))

• Costs (due to data duplication)Costs (due to data duplication)– Wasted storage spaceWasted storage space– Data integrity/consistency threatsData integrity/consistency threats

• Common denormalization opportunitiesCommon denormalization opportunities– One-to-one relationship (Fig. 6-3)One-to-one relationship (Fig. 6-3)– Many-to-many relationship with attributes (Fig. 6-4)Many-to-many relationship with attributes (Fig. 6-4)– Reference data (1:N relationship where 1-side has data not used in any Reference data (1:N relationship where 1-side has data not used in any

other relationship) (Fig. 6-5)other relationship) (Fig. 6-5)

16

Page 17: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 17

Figure 6-3 A possible denormalization situation: two entities with one-to-one relationship

Page 18: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 18

Figure 6-4 A possible denormalization situation: a many-to-many relationship with nonkey attributes

Extra table access required

Null description possible

Page 19: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 19

Figure 6-5A possible denormalization situation:reference data

Extra table access required

Data duplication

Page 20: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

PartitioningPartitioning• Horizontal Partitioning: Distributing the rows of a table Horizontal Partitioning: Distributing the rows of a table

into several separate filesinto several separate files– Useful for situations where different users need access to Useful for situations where different users need access to

different rowsdifferent rows– Three types: Key Range Partitioning, Hash Partitioning, or Three types: Key Range Partitioning, Hash Partitioning, or

Composite PartitioningComposite Partitioning• Vertical Partitioning: Distributing the columns of a table Vertical Partitioning: Distributing the columns of a table

into several separate relationsinto several separate relations– Useful for situations where different users need access to Useful for situations where different users need access to

different columnsdifferent columns– The primary key must be repeated in each fileThe primary key must be repeated in each file

• Combinations of Horizontal and VerticalCombinations of Horizontal and Vertical

20

Partitions often correspond with User Schemas (user views)

Page 21: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Partitioning (cont.)Partitioning (cont.)

• Advantages of Partitioning:Advantages of Partitioning:– Efficiency: Records used together are grouped togetherEfficiency: Records used together are grouped together– Local optimization: Each partition can be optimized for performanceLocal optimization: Each partition can be optimized for performance– Security, recoverySecurity, recovery– Load balancing: Partitions stored on different disks, reduces Load balancing: Partitions stored on different disks, reduces

contentioncontention– Take advantage of parallel processing capabilityTake advantage of parallel processing capability

• Disadvantages of Partitioning:Disadvantages of Partitioning:– Inconsistent access speed: Slow retrievals across partitionsInconsistent access speed: Slow retrievals across partitions– Complexity: Non-transparent partitioningComplexity: Non-transparent partitioning– Extra space or update time: Duplicate data; access from multiple Extra space or update time: Duplicate data; access from multiple

partitionspartitions

21

Page 22: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Data ReplicationData Replication

• Purposely storing the same data in multiple Purposely storing the same data in multiple locations of the databaselocations of the database

• Improves performance by allowing multiple Improves performance by allowing multiple users to access the same data at the same users to access the same data at the same time with minimum contentiontime with minimum contention

• Sacrifices data integrity due to data Sacrifices data integrity due to data duplicationduplication

• Best for data that is not updated oftenBest for data that is not updated often

22

Page 23: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Designing Physical FilesDesigning Physical Files• Physical File: Physical File:

– A named portion of secondary memory allocated for A named portion of secondary memory allocated for the purpose of storing physical recordsthe purpose of storing physical records

– Tablespace–named set of disk storage elements in Tablespace–named set of disk storage elements in which physical files for database tables can be storedwhich physical files for database tables can be stored

– Extent–contiguous section of disk spaceExtent–contiguous section of disk space• Constructs to link two pieces of data:Constructs to link two pieces of data:

– Sequential storageSequential storage– Pointers–field of data that can be used to locate Pointers–field of data that can be used to locate

related fields or recordsrelated fields or records

23

Page 24: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 24

Figure 6-4 Physical file terminology in an Oracle environment

Page 25: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

File OrganizationsFile Organizations• Technique for physically arranging records of a file on Technique for physically arranging records of a file on

secondary storagesecondary storage• Factors for selecting file organization:Factors for selecting file organization:

– Fast data retrieval and throughputFast data retrieval and throughput– Efficient storage space utilizationEfficient storage space utilization– Protection from failure and data lossProtection from failure and data loss– Minimizing need for reorganizationMinimizing need for reorganization– Accommodating growthAccommodating growth– Security from unauthorized useSecurity from unauthorized use

• Types of file organizationsTypes of file organizations– SequentialSequential– IndexedIndexed– HashedHashed

25

Page 26: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 26

Figure 6-7a Sequential file organization

If not sortedAverage 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

Page 27: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Indexed File OrganizationsIndexed File Organizations• Index–a separate table that contains organization of Index–a separate table that contains organization of

records for quick retrievalrecords for quick retrieval• Primary keys are automatically indexedPrimary keys are automatically indexed• Oracle has a CREATE INDEX operation, and MS ACCESS Oracle has a CREATE INDEX operation, and MS ACCESS

allows indexes to be created for most field typesallows indexes to be created for most field types• Indexing approaches:Indexing approaches:

– B-tree index, Fig. 6-7bB-tree index, Fig. 6-7b– Bitmap index, Fig. 6-8Bitmap index, Fig. 6-8– Hash Index, Fig. 6-7cHash Index, Fig. 6-7c– Join Index, Fig 6-9Join Index, Fig 6-9

27

Page 28: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 28

Figure 6-7b B-tree index

uses a tree searchAverage time to find desired record = depth of the tree

Leaves of the tree are all at same level

consistent access time

Page 29: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 29

Figure 6-7cHashed file or index organization

Hash algorithmUsually uses division-remainder to determine record position. Records with same position are grouped in lists

Page 30: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 30

Figure 6-8Bitmap index index organization

Bitmap saves on space requirementsRows - possible values of the attribute

Columns - table rows

Bit indicates whether the attribute of a row has the values

Page 31: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 31

Figure 6-9 Join Indexes–speeds up join operations

Page 32: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 32

Page 33: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Clustering FilesClustering Files

• In some relational DBMSs, related records from In some relational DBMSs, related records from different tables can be stored together in the same different tables can be stored together in the same disk areadisk area

• Useful for improving performance of join operationsUseful for improving performance of join operations• Primary key records of the main table are stored Primary key records of the main table are stored

adjacent to associated foreign key records of the adjacent to associated foreign key records of the dependent tabledependent table

• e.g. Oracle has a CREATE CLUSTER commande.g. Oracle has a CREATE CLUSTER command

33

Page 34: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Rules for Using IndexesRules for Using Indexes

1.1. Use on larger tablesUse on larger tables2.2. Index the primary key of each tableIndex the primary key of each table3.3. Index search fields (fields frequently in Index search fields (fields frequently in

WHERE clause)WHERE clause)4.4. Fields in SQL ORDER BY and GROUP BY Fields in SQL ORDER BY and GROUP BY

commandscommands5.5. When there are >100 values but not when When there are >100 values but not when

there are <30 valuesthere are <30 values

34

Page 35: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Rules for Using Indexes (cont.)Rules for Using Indexes (cont.)6.6. Avoid use of indexes for fields with long values; Avoid use of indexes for fields with long values;

perhaps compress values firstperhaps compress values first7.7. DBMS may have limit on number of indexes per DBMS may have limit on number of indexes per

table and number of bytes per indexed field(s)table and number of bytes per indexed field(s)8.8. Null values will not be referenced from an indexNull values will not be referenced from an index9.9. Use indexes heavily for non-volatile databases; Use indexes heavily for non-volatile databases;

limit the use of indexes for volatile databaseslimit the use of indexes for volatile databasesWhy? Because modifications (e.g. inserts, deletes) require Why? Because modifications (e.g. inserts, deletes) require updates to occur in index filesupdates to occur in index files

35

Page 36: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

RAIDRAID

• Redundant Array of Inexpensive DisksRedundant Array of Inexpensive Disks• A set of disk drives that appear to the user to A set of disk drives that appear to the user to

be a single disk drivebe a single disk drive• Allows parallel access to data (improves Allows parallel access to data (improves

access speed)access speed)• Pages are arranged in Pages are arranged in stripesstripes

36

Page 37: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6 37

Figure 6-10RAID with four disks and striping

Here, pages 1-4 can be read/written simultaneously

Page 38: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Raid Types (Figure 6-10)Raid Types (Figure 6-10)• Raid 0

– Maximized parallelism– No redundancy– No error correction– no fault-tolerance

• Raid 1– Redundant data – fault tolerant– Most common form

• Raid 2– No redundancy– One record spans across data disks– Error correction in multiple disks–

reconstruct damaged data

38

Raid 3 Error correction in one disk Record spans multiple data

disks (more than RAID2) Not good for multi-user

environments, Raid 4

Error correction in one disk Multiple records per stripe Parallelism, but slow updates

due to error correction contention

Raid 5 Rotating parity array Error correction takes place in

same disks as data storage Parallelism, better performance

than Raid4

Page 39: Chapter 6 Chapter 6: Physical Database Design and Performance Modern Database Management 8 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.

Chapter 6

Dat

abas

e Ar

chite

ctur

es

Dat

abas

e Ar

chite

ctur

es

(Fig

ure

6-11

)(F

igur

e 6-

11)

39

Legacy

Systems

Current

Technology

Data

Warehouses


Recommended