managing external data 3

64
Gitte Christensen Dyalog Ltd Managing External Data 3

Upload: emmy

Post on 23-Jan-2016

29 views

Category:

Documents


0 download

DESCRIPTION

Managing External Data 3. Gitte Christensen Dyalog Ltd. Relational Algebra is : the formal description of how a relational database operates the mathematics which underpin SQL operations. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Managing External Data 3

Gitte ChristensenDyalog Ltd

Managing External Data 3

Page 2: Managing External Data 3

Relational Algebra

Relational Algebra is :•the formal description of how a relational database operates•the mathematics which underpin SQL operations.

Operators in relational algebra are not necessarily the same as SQL operators, even if they have the same name.

Page 3: Managing External Data 3

Terminology

• Relation - a set of tuples.• Tuple - a collection of attributes which

describe some real world entity.• Attribute - a real world role played by a

named domain.• Domain - a set of atomic values.• Set - a mathematical definition for a

collection of objects which contains no duplicates.

Page 4: Managing External Data 3

Operators - Write

• INSERT - provides a list of attribute values for a new tuple in a relation. This operator is the same as SQL.

• DELETE - provides a condition on the attributes of a relation to determine which tuple(s) to remove from the relation. This operator is the same as SQL.

• MODIFY - changes the values of one or more attributes in one or more tuples of a relation, as identified by a condition operating on the attributes of the relation. This is equivalent to SQL UPDATE.

Page 5: Managing External Data 3

Operators - Retrieval

There are two groups of operations:• Mathematical set theory based relations:

UNION, INTERSECTION, DIFFERENCE, and CARTESIAN PRODUCT.

• Special database operations: SELECT (not the same as SQL SELECT), PROJECT, and JOIN.

Page 6: Managing External Data 3

Relational SELECT

SELECT is used to obtain a subset of the tuples of a relation that satisfy a select condition.For example, find all employees born after 1st Jan 1950:

SELECT dob > ’01/JAN/1950’ (employee)

Page 7: Managing External Data 3

Relational PROJECTThe PROJECT operation is used to select a subset of the attributes of a relation by specifying the names of the required attributes.For example, to get a list of all employees surnames and employee numbers:

PROJECT surname,empno (employee)

Page 8: Managing External Data 3

SELECT and PROJECT

FROM employeeWHERE depno = 1;

SELECT empno

PROJECT empno (SELECT depno = 1 (employee))

Mapping this back to SQL gives:

SELECT and PROJECT can be combined together. For example, to get a list of employee numbers for employees in department number 1:

Page 9: Managing External Data 3

Set Operations - semanticsConsider two relations R and S.• UNION of R and S

the union of two relations is a relation that includes all the tuples that are either in R or in S or in both R and S. Duplicate tuples are eliminated.

• INTERSECTION of R and Sthe intersection of R and S is a relation that includes all tuples that are both in R and S.

• DIFFERENCE of R and Sthe difference of R and S is the relation that contains all the tuples that are in R but that are not in S.

Page 10: Managing External Data 3

SET Operations - requirementsFor set operations to function correctly the relations R and S must be union compatible. Two relations are union compatible if

– they have the same number of attributes– the domain of each attribute in column

order is the same in both R and S.

Page 11: Managing External Data 3

UNION Example

Page 12: Managing External Data 3

INTERSECTION Example

Page 13: Managing External Data 3

DIFFERENCE Example

Page 14: Managing External Data 3

CARTESIAN PRODUCT

The Cartesian Product is also an operator which works on two sets. It is sometimes called the CROSS PRODUCT or CROSS JOIN.

It combines the tuples of one relation with all the tuples of the other relation.

Page 15: Managing External Data 3

CARTESIAN PRODUCT Example

Page 16: Managing External Data 3

JOIN OperatorJOIN is used to combine related tuples from two

relations:• In its simplest form the JOIN operator is just the cross

product of the two relations.• As the join becomes more complex, tuples are

removed within the cross product to make the result of the join more meaningful.

• JOIN allows you to evaluate a join condition between the attributes of the relations on which the join is undertaken.

The notation used is R JOIN join condition S

Page 17: Managing External Data 3

JOIN Example

Page 18: Managing External Data 3

Natural Join

Invariably the JOIN involves an equality test, and thus is often described as an equi-join. Such joins result in two attributes in the resulting relation having exactly the same value. A ‘natural join’ will remove the duplicate attribute(s).– In most systems a natural join will require that the

attributes have the same name to identify the attribute(s) to be used in the join. This may require a renaming mechanism.

– If you do use natural joins make sure that the relations do not have two attributes with the same name by accident.

Page 19: Managing External Data 3

OUTER JOINsNotice that much of the data is lost when applying a join to two relations. In some cases this lost data might hold useful information. An outer join retains the information that would have been lost from the tables, replacing missing data with nulls.

There are three forms of the outer join, depending on which data is to be kept.•LEFT OUTER JOIN - keep data from the left-hand table•RIGHT OUTER JOIN - keep data from the right-hand table•FULL OUTER JOIN - keep data from both tables

Page 20: Managing External Data 3

OUTER JOIN Example 1

Page 21: Managing External Data 3

OUTER JOIN Example 2

Page 22: Managing External Data 3

SQL query optimisation

• Optimisation Concept• Implementation of Rel. Algebra

Operations• Oracle Query Execution Plans.• Btree Indexing• Rtree Indexing

Page 23: Managing External Data 3

SQL query optimisation

SQL query

Parse and TranslateRelational algebra expression

Optimisation

using data statistics

Execution planQuery

result Evaluate

against Database

Page 24: Managing External Data 3

Optimisation steps• Parse

– check SQL syntax and columns & tables valid

• Translate– SQL into relational algebra expression

• Select most efficient query execution plan – minimisation of the input/output and cpu

requirements

• Evaluate expression– Call required code modules

Page 25: Managing External Data 3

Example SQL query

S(sno,sname,status,scity) SP(sno,pno,qty) P(pno,pname,colour,weight,pcity)

Get supplier name for suppliers who supply red parts.

SQL select sname

from S,P,SP

where S.sno = SP.sno

and P.pno = Sp.pno and colour = ‘red’;

Page 26: Managing External Data 3

Example SQL query

• How would you do this?

Page 27: Managing External Data 3

Query as relational algebra expression and graph(((((( P restrict[ colour = red] ) project[ pno ])

join SP [pno = pno]) project [ sno ]) join S [ sno = sno ]) project [ sname ])

P SP S

project

restrict

project

join

project

join

Page 28: Managing External Data 3

Relational algebra transformations• The following transformations can be

applied without regard to the actual data values stored in the tables referenced in the SQL query.

• They are being stated to justify some of the common manipulations of the relational algebra during optimisation.

Page 29: Managing External Data 3

Distributive transformationDistributive Law

f(A o B) = f(A) o f(B)

e.g. restrict(A join B) = restrict (A) join restrict (B)

Restrict distributes over union, intersection, difference and join.

For join the restriction must, at it’s most complex, consist of the AND of two separate conditions one for each operand.

Project distributes over union, intersection, join.

For join the join attributes must be included in the projection.

Thus restricts / projects can often be done before joins.

Page 30: Managing External Data 3

Commutative transformation

Commutative Law

The operator o is commutative if :-

A o B = B o A for all values of A and B

Union, intersection and join are commutative.

E.g S join SP = SP join S

Thus optimiser can choose best order typically the smallest table is used to drive the join processing.

Page 31: Managing External Data 3

Associative transformation

Associative Law

Operator o is associative if :-

A o ( B o C ) = ( A o B ) o C for all A,B,C values

e.g. A join ( B join C ) = ( A join B ) join C

Union, intersection and join are associative.

Thus for a 3 table join the optimiser can choose any sequence of pairs of joins.

Page 32: Managing External Data 3

Semantic transformations

Referential Integrity Based.

select pno from SP,S where SP.sno = S.sno;

If declared S.sno as PK and SP.sno as FK then optimise to:-

select pno from SP;

Application of Negator Functions

where not (status > 20)

this cannot use an index scan so must use table scan but

if transform to status <= 20 - now can use index scan

Assumes that an index on the status column already exists

Page 33: Managing External Data 3

Will the results be the same?

select sname from s,sp where s,sno = sp.sno and sp.pno = ‘p2’;

select sname from sp,s where sp.pno = ‘p2’ and sp.sno = s.sno;

select sname from s where s.sno in ( select sp.sno from sp

where sp.pno = ‘p2’);

Explain. What is the implication for performance of the three?

Page 34: Managing External Data 3

Will the results be the same?

Page 35: Managing External Data 3

Yes - all produce the same result rows• join s to sp can be transformed into join sp to

s as join operation is commutative• restrict can be distributed past the join thus

first two order of operations can be ignored• set membership can be converted to a join• optimisation will convert all 3 queries the

same query so all must have the same performance - user can chose which to use

Page 36: Managing External Data 3

Break

Page 37: Managing External Data 3

SQL query optimisation

Page 38: Managing External Data 3

Algorithm selection• The relational algebra operations typically

have multiple code implementations. It is necessary for the optimiser to select the most appropriate for the current circumstances.

• For example the presence of a direct access path to the data required will be preferred to a complete table scan if only 10 -20% of the table is to be accessed.

Page 39: Managing External Data 3

Restriction implementationsFull table scan or table scan with early termination

All blocks must be searched unless an early termination condition is found e.g row found and no duplicates or data is ordered and already passed the required data location.

Btree Non Clustered Index Search

Tree search to starting key then linear scan of sorted keys.

Assume to access each record needs a disk block read.

Page 40: Managing External Data 3

Multiple restrictionsConjunction And’d together

If only some columns are indexed then use most selective index to locate the data record and check out the other restriction conditions in the buffer.

If all columns are indexed then can get rowid’s of all records meeting the restriction conditions and perform an intersection. Use the result set of rowids to locate the data records.

Disjunction Or’d together

If all columns indexed get all rowid’s and perform union. Use the result set of rowids to locate the data records.Else must scan table.

Page 41: Managing External Data 3

Join implementations

• All give the same final result set of rows as defined by the join operation.

• Algorithm and cost differ.• Nested loop algorithm will function with any

join condition I.e <, <=, =, >=, >• Hash algorithm only possible with =• Relation S 500 rows 50 rows per disk block• Relation R 100000 rows 50 rows per disk

block

Page 42: Managing External Data 3

Join - Block Nested Loop Inner file pass 1S Outer File Pass.Block Buffers Pass.Block R Inner File

1.1

1.2

1.1

2.1

1.2

2.2

1.3

2.3Join col values equal

Page 43: Managing External Data 3

Join - Block Nested LoopInner file pass 2S Outer File Pass.Block Buffers Pass.Block R Inner File

1.1

1.2

1.1

2.1

1.2

2.2

1.3

2.3Join col values equal

Page 44: Managing External Data 3

Join - Block Nested Loop - CostCost

No. Outer Loop Blocks * No. Inner Loop blocks + No. Outer Loop Blocks

Use smallest table as outer loopi.e. (500/50 * 100000/50 ) + 500/50 = 20010

Reduce cost of inner loop by having :-index built on inner loop join column which is also a Primary Key - lookup avoiding full file scan – assume needs 1 disk read per row in outer file

(500 / 50 + 500 ) = 510

Page 45: Managing External Data 3

Equi Join - Hash example

Relation R 91 1 40 900

Disk Hash Buckets R [ 0] [1]

Disk Hash Buckets S [0] [1]

Relation S 40 101 90 1 1000 91

Value allocated to [0] if even else allocated to [1] if odd

Page 46: Managing External Data 3

Equi Join - Hash example

Relation R 91 1 40 900

Disk Hash Buckets R [ 0] 40 900 [1] 1 91

Disk Hash Buckets S [0] 40 90 1000 [1] 101 1 91

Relation S 40 101 90 1 1000 91

Value allocated to [0] if even else allocated to [1] if odd

Page 47: Managing External Data 3

Equi Join - Hash cost• Only need to compare record values from

matching hash buckets to find which records need joining. Assumes mechanism to retrieve required data rows.

• CostRead files in for hashing; Write out to allocated hash bucket; Read in each pair of buckets for the search for matching join values.

3 * ( No Blocks of R + No of blocks of S)3 * ( 2000 + 10 ) = 6030

Page 48: Managing External Data 3

Join before restrict Example

S(sno,sname,status,scity) 100 rows 20 rows/disk block

SP(sno,pno,qty) 10000 rows 100/disk block 50 with pno = p2

select * from S,SP where pno = ‘p2’ and S.sno = SP.sno;

Approach 1 Cost in Block I/O

restrict write out after restrict 1

join nested loop 5 + (100*5) 505

S SP Total 506

Page 49: Managing External Data 3

Restrict before join Example

Approach 2 Cost in Block I/O

write out after join 1

join nested loop in RAM

full scan of S 5

restrict full scan of SP 100

S SP Total 106

Page 50: Managing External Data 3

Three table join query

branch(b_name, b_city, manager, b_address) 100 rows

account(b_name, a_number, balance) 10 000 rows

account_holder(h_name,a_number,h_address) 50 000 rows

select h_name, balance

from account a, account_holder h, branch b

where a.a_number = h.a_number and a.b_name = b.b_name

and b.city = ‘Leicester’ and balance > 10000;

Page 51: Managing External Data 3

Optimised query plan project(h_name,balance)

join (a_number)

project(a_number,balance)

join (b_name)

project (b_name) project(h_name,a_number)

restrict (b_city = Leicester)

restrict(balance>10000)

branch account account_holder

Page 52: Managing External Data 3

Three table join query plan justification

Page 53: Managing External Data 3

Three table join query plan justification• Projects and restricts distributed past

joins• join branch and account as pair of

smallest tables and therefore assume that this will provide the smallest result set.

Page 54: Managing External Data 3

Optimiser estimation methods• Hard coded values in the optimiser

algorithm– e.g restriction 1% rows on =, 10% on >=

• No consideration of actual data values

• Statistics based on number of different distinct values in column– assumes uniform distribution

• Statistics based on histogram of count of unique values.

Page 55: Managing External Data 3

Importance of estimates• The use of an index is only efficient if less

than 20% of the data is to be returned. – Each row access may require a separate disk

read. Thus same disk block may be retrieved more than once if buffer space limited. More efficient to execute a full table scan.

• Cost of statistics collection needs to be traded off against improved performance of queries based on more accurate estimates.

Page 56: Managing External Data 3

Database Implementations

Page 57: Managing External Data 3

Relational Databases

• The Conceptual model has become the Physical model

• Row based storage• No ordering of data• Row based searches• Very many comparisons is required

to find and manipulate data

Page 58: Managing External Data 3

Relational Databases/APL• Current APL/K/J databases

– all relational– all Column stores

• kdb• Vstar• flipdb• TakeCare

Page 59: Managing External Data 3

Relational Databases/APL• The relational model holds• Row stores are implemented with

great engineering skills• Use them if you can

Page 60: Managing External Data 3

Relational Databases/APL• but

– The physical laws still apply– Some problems might need different

solutions

Page 61: Managing External Data 3

Semistructured data

Page 62: Managing External Data 3

Root

cf mh sw

Carrie Fisher

address address

name

city

street

MapleHollywood

LocustMalibu

city

star

starmovie

title year

Star Wars1977

Mark HamillOak

Brentwood

name

street city

street

starInstarOf

starIn

starOf

Page 63: Managing External Data 3

Multidimensional data

Page 64: Managing External Data 3