34
Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi 1

Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Embed Size (px)

Citation preview

Page 1: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Physical Database Design and Performance

Dr. Mohamed Osman Ali Hegazi 1

Page 2: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Hegaz 2

Requirements specification

Database Design

Conceptual Database Design

Logical Database Design

Physical Database Design

Database implementation

Application Planning

Application Design

Application Implementation

Testing

Maintenance

ERUML

Mapping

Normalization

Design container , policy, Integrity

Create & Programming

Query processing and transaction

Database Administration

Page 3: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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

Dr. Mohamed Osman Ali Hegazi 3

Page 4: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Physical Design Process

Dr. Mohamed Osman Ali Hegazi 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: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Designing Fields

Field: smallest unit of data in database

Field design Choosing data typeCoding, compression, encryptionControlling data integrity

Dr. Mohamed Osman Ali Hegazi 5

Page 6: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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.)

Dr. Mohamed Osman Ali Hegazi 6

Page 7: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

7

Common Data Types (Domain) Text

Fixed length 1 to 64 K bytes Variable length 1 to 2 G bytes

Memo/Note Numeric

Byte 1 byte 0 to 255 Boolean 2 bytes True or False Integer 2 bytes -32,768 to 32,767 (no decimal points) Long 4 bytes -2,147,483,648 to 2,147,483,647 (no decimal

points) Floating 4 bytes 1.401298E-45 to 3.402823E38 Double 8 bytes 4.94065645841247E-324 to 1.79769313486232E308 Currency 8 bytes -922,377,203,685,477.5808 to

922,377,203,685,477.5807

Date/Time 8 bytes Jan 1, 100 to Dec 31, 9999 Objects/Raw binary

Any type of data supported by the machine Pictures, sound, video . . .

Page 8: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

8

Data Type SizesAccess SQL Server Oracle

Text fixed variable Unicode memo

Text 255 bit

Memo 64k

char, 8K, 4Kvarchar 8K, 4Knchar, nvarchartext 2M, 1M

CHAR 2KVARCHAR2 4KNVARCHAR2 LONG 2G

Number Byte (8 bits) Integer (16 bits) Long (32 bits) (64 bits) Fixed precision Float Double Currency Yes/No

Byte 255Integer +/- 32767Long +/- 2BNANAFloat +/- 1E 38Double +/- 1E 308Currency +/- 900.000 trllion

Yes/No o/1

tinyint 255smallint +/- 32767intbigintdecimal(p,s)realfloatmoney+/- 900.000 trllion

bit 0/1

INTEGER 38 digitsINTEGER 38 digitsINTEGER 38 digitsNUMBER(38,0) 38 digitsNUMBER(p,s) -84 to 127NUMBER, FLOAT 38 digitsNUMBER 38 digitsNUMBER(38,4) 38 digitsINTEGER

Date/Time

Interval

Date/Time

NA

datetimesmalldatetimeinterval year …

DATE

INTERVAL YEAR …

Image OLE Object Image 2 GB LONG RAW, BLOB 2 , 4 GB

AutoNumber AutoNumber 2B Identity 2 B or 18 digitsrowguidcol

SEQUENCES 38 digitsROWID

Page 9: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 9

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

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

Page 10: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Field Data Integrity

Default value - assumed value if no explicit value

Range control – allowable value limitations (constraints or validation rules)

Null value control – allowing or prohibiting empty fields

Referential integrity – range control (and null value allowances) for foreign-key to primary-key match-ups

Dr. Mohamed Osman Ali Hegazi 10

Page 11: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Handling Missing Data

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

Construct a report listing missing values In programs, ignore missing data unless

the value is significant

Dr. Mohamed Osman Ali Hegazi 11

Triggers can be used to perform these operations

Page 12: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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

Dr. Mohamed Osman Ali Hegazi 12

Page 13: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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 Many-to-many relationship with attributes Reference data (1:N relationship where 1-side has data not used

in any other relationship)

Dr. Mohamed Osman Ali Hegazi 13

Page 14: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 14

Fig 6.5 – A possible

denormalization situation:

reference data

Extra table access required

Data duplication

Page 15: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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

Dr. Mohamed Osman Ali Hegazi 15

Partitions often correspond with User Schemas (user views)

Page 16: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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

Dr. Mohamed Osman Ali Hegazi 16

Page 17: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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

Dr. Mohamed Osman Ali Hegazi 17

Page 18: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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.

Dr. Mohamed Osman Ali Hegazi 18

Page 19: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 19

Figure 6-7 (a) 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 20: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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, Bitmap index, Hash Index, Join Index,

Dr. Mohamed Osman Ali Hegazi 20

Page 21: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 21

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 22: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 22

Hashed file or index organization

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

Page 23: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 23

Bitmap index index organization

Bitmap saves on space requirementsRows - possible values of the attributeColumns - table rowsBit indicates whether the attribute of a row has the values

Page 24: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 24

Join Index – speeds up join operations

Page 25: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

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

Dr. Mohamed Osman Ali Hegazi 25

Page 26: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Rules for Using Indexes

1. Use on larger tables2. Index the primary key of each table3. Index search fields (fields frequently in

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

commands5. When there are >100 values but not when

there are <30 values

Dr. Mohamed Osman Ali Hegazi 26

Page 27: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Rules for Using Indexes6. 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

Dr. Mohamed Osman Ali Hegazi 27

Page 28: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

RAID

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

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

access speed) Pages are arranged in stripes

Dr. Mohamed Osman Ali Hegazi 28

Page 29: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dr. Mohamed Osman Ali Hegazi 29

Figure 6-10 –RAID with four

disks and striping

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

Page 30: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Raid Types (Figure 6-11) 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

Dr. Mohamed Osman Ali Hegazi 30

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 contentionRaid 5

‒ Rotating parity array‒ Error correction takes place in same

disks as data storage‒ Parallelism, better performance than

Raid4

Page 31: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Dat

abas

e A

rch

itec

ture

s

Dr. Mohamed Osman Ali Hegazi 31

LegacySystems

CurrentTechnology

DataWarehouses

Page 32: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Query Optimization

Parallel Query Processing Override Automatic Query Optimization Data Block Size -- Performance tradeoffs:

Block contention Random vs. sequential row access speed Row size Overhead

Balancing I/O Across Disk Controllers

Dr. Mohamed Osman Ali Hegazi 32

Page 33: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Query Optimization Wise use of indexes Compatible data types Simple queries Avoid query nesting Temporary tables for query groups Select only needed columns No sort without index

Dr. Mohamed Osman Ali Hegazi 33

Page 34: Physical Database Design and Performance Dr. Mohamed Osman Ali Hegazi1

Assignment no 3

Give a brief description for the index and clustering concepts in database

Dr. Mohamed Osman Hegaz 34