data integration and transformation 3. data exchange

29
Data integration and transformation 3. Data Exchange Paolo Atzeni Dipartimento di Informatica e Automazione Università Roma Tre 28/10/2009

Upload: dennis

Post on 04-Jan-2016

41 views

Category:

Documents


0 download

DESCRIPTION

Data integration and transformation 3. Data Exchange. Paolo Atzeni Dipartimento di Informatica e Automazione Università Roma Tre 28/10/2009. References. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Data integration and transformation 3. Data Exchange

Data integration and transformation

3. Data Exchange

Paolo Atzeni

Dipartimento di Informatica e Automazione

Università Roma Tre

28/10/2009

Page 2: Data integration and transformation 3. Data Exchange

References

• Ronald Fagin, Laura M. Haas, Mauricio Hernandez, Renee J. Miller, Lucian Popa, and Yannis Velegrakis "Clio: Schema Mapping Creation and Data Exchange" A.T. Borgida et al. (Eds.): Mylopoulos Festschrift, LNCS 5600, Springer-Verlag Berlin Heidelberg, 2009, pp. 198–236.

and other papers cited in it

P. Atzeni ITD - 3 - 28/10/2009 2

Page 3: Data integration and transformation 3. Data Exchange

P. Atzeni ITD - 3 - 28/10/2009 3

Data exchange

• Given a source and a target schema, find a transformation from the former to the latter

Page 4: Data integration and transformation 3. Data Exchange

P. Atzeni ITD - 3 - 28/10/2009 4

Data exchange, a typical approach (the Clio project)

Schema Match

Mapping generation

Query generation

Target schema

Source schema

Page 5: Data integration and transformation 3. Data Exchange

Simple example

Dept(Id,DeptName) Emp(Code,EmpName,Dept)Employee(Id,Name,DeptId)

(with FK from DeptId to Dept.Id)

Assume we know that Employee.Id corresponds to Code

Name corresponds to EmpNameDeptName corresponds to Dept

We would like to obtain a query that populates EmpSELECT Id as Code, Name AS EmpName, DeptName AS DeptFROM Employee JOIN Dept ON DeptId = Dept.Id

P. Atzeni ITD - 3 - 28/10/2009 5

Page 6: Data integration and transformation 3. Data Exchange

Better visualization

Employee

Id

Name

DeptId

Dept

Id

DeptName

Emp

Code

EmpName

Dept

P. Atzeni ITD - 3 - 28/10/2009 6

We want to obtainSELECT Id as Code, Name AS EmpName, DeptName AS DeptFROM Employee JOIN Dept ON DeptId = Dept.Idand notSELECT Id as Code, Name AS EmpName, NULL AS Dept FROM Employee UNIONSELECT NULL as Code, NULL AS EmpName, DeptName AS Dept FROM DeptnorSELECT Id as Code, NULL AS EmpName, NULL AS Dept FROM Employee UNION…

Page 7: Data integration and transformation 3. Data Exchange

The main issue

• How do we discover we should use a join and not one or two unions?

• Attributes that appear together in a relation– Id,Name in the source and Code,EmpName in the target

• The foreign key

P. Atzeni ITD - 3 - 28/10/2009 7

Page 8: Data integration and transformation 3. Data Exchange

P. Atzeni ITD - 3 - 28/10/2009 8

Data exchange, another example

PayRate ( Rank HrRate )

Professor ( Id Name Sal )

Student ( Name GPA Yr )

WorksOn ( Name Proj Hrs ProjRank )

Personnel ( Id Name Sal Addr )

Address ( Id Addr )

• Foreign keys

– between the two Id– between ProjRank and Rank– between the two Name

Page 9: Data integration and transformation 3. Data Exchange

P. Atzeni ITD - 3 - 28/10/2009 9

Data exchange, example

PayRate ( Rank HrRate )

Professor ( Id Name Sal )

Student ( Name GPA Yr )

WorksOn ( Name Proj Hrs ProjRank )

Personnel ( Id Name Sal Addr )

Address ( Id Addr )

• Assume we are given correspondences, which involve functions:– Usually identity– PayRate(HrRate)*WorksOn(Hrs) → Personnel(Sal)

Page 10: Data integration and transformation 3. Data Exchange

P. Atzeni ITD - 3 - 28/10/2009 10

Data exchange, example

PayRate ( Rank HrRate )

Professor ( Id Name Sal )

Student ( Name GPA Yr )

WorksOn ( Name Proj Hrs ProjRank )

Personnel ( Id Name Sal Addr )

Address ( Id Addr )

• How do we combine HrRate and Hrs?– Via a join suggested by foreign keys

• Foreign key between ProjRank and ProjRank suggests a join• Foreign keys over Name and between Yr and Rank suggest

another

Page 11: Data integration and transformation 3. Data Exchange

Heuristic

• We have many correspondences• Group correspondences in such a way that each set contains at

most one correspondence for each attribute in the target• We are interested in sets where the source attribute are either in

the same relations or in relations whose join is meaningful

P. Atzeni ITD - 3 - 28/10/2009 11

Page 12: Data integration and transformation 3. Data Exchange

Professor ( Id Name Sal )

PayRate ( Rank HrRate )

Student ( Name GPA Yr )

WorksOn ( Name Proj Hrs ProjRank )

Personnel ( Id Name Sal Addr )

Address ( Id Addr )

P. Atzeni ITD - 3 - 28/10/2009 12

Partition the correspondences

• … and for each partition the joins are meaningful

Page 13: Data integration and transformation 3. Data Exchange

P. Atzeni ITD - 3 - 28/10/2009 13

The process, example

SELECT P.Id, P.Name, P.Sal, A.AddrFROM Professor P, Address AWHERE A.Id = P.IdUNION ALLSELECT NULL AS Id, S.Name, p.HrRate * W.Hrs, NULL AS AddrFROM PayRate P, Student S, WorksOn WWHERE W.Name = S.Name AND S.Yr = P.Rank

Professor ( Id Name Sal )

PayRate ( Rank HrRate )

Student ( Name GPA Yr )

WorksOn ( Name Proj Hrs ProjRank )

Personnel ( Id Name Sal Addr )

Address ( Id Addr )

Page 14: Data integration and transformation 3. Data Exchange

More complex example (with nesting)

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

P. Atzeni ITD - 3 - 28/10/2009 14

f1

f2

f3

f4

Nested relation

Organizations

FundingsCode

HAL

Year

301

FinIdFId

SM

PH 303

302

Page 15: Data integration and transformation 3. Data Exchange

Correspondences (given by a "schema matcher")

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

P. Atzeni ITD - 3 - 28/10/2009 15

v1

v2

v3

v4

f1

f2

f3

f4

Page 16: Data integration and transformation 3. Data Exchange

Let us formalize correspondences

P. Atzeni ITD - 3 - 28/10/2009 16

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

n,d,y Companies(n,d,y) →

y',F Organizations(n,y',F))v1

v2

g,r,a,s,m Grants(g,r,a,s,m) →

c,y,F,f Organiz…(c,y,F)), F(g,f)

v4c, e, p Contacts(c,e,p) →

f,b Finances(f,b,p)

v3g, r, a, s, m Grants(g,r,a,s,m) →

f,p Finances(f,a,p)

Page 17: Data integration and transformation 3. Data Exchange

Correspondences alone are not enough

P. Atzeni ITD - 3 - 28/10/2009 17

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

GId

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

n,d,y Companies(n,d,y) →

y',F Organizations(n,y',F))v1

v3g, r, a, s, m Grants(g,r,a,s,m) →

f,p Finances(f,a,p)

v2

g,r,a,s,m Grants(g,r,a,s,m) →

c,y,F,f Organiz…(c,y,F)), F(g,f)

v4c, e, p Contacts(c,e,p) →

f,b Finances(f,b,p)

Companies

Name Address Year

HAL NY 1920

SM Seattle 1984

PH SF 1957

Grants

GId Rec.t Amt

301 HAL 30

302 HAL 40

303 PH 30

Organizations

FundingsCode

HAL

Year

FinIdFId

SM

PH

301

302

Page 18: Data integration and transformation 3. Data Exchange

More complex mappings are needed,representing associations

P. Atzeni ITD - 3 - 28/10/2009 18

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

GId

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

n,d,y,g,a,s,m Companies(n,d,y),

Grants(g,n,a,s,m) →

y',F,f Organizations(n,y',F)), F(g,f)

v3g, r, a, s, m Grants(g,r,a,s,m) →

f,p Finances(f,a,p)

v4c, e, p Contacts(c,e,p) →

f,b Finances(f,b,p)

Companies

Name Address Year

HAL NY 1920

SM Seattle 1984

PH SF 1957

Grants

GId Rec.t Amt

301 HAL 30

302 HAL 40

303 PH 30

Organizations

FundingsCode

HAL

Year

301

FinIdFId

SM

PH 303

302

Note: The "association" between companies and grants in the source is suggested by f1 (a foreign key)

Page 19: Data integration and transformation 3. Data Exchange

Yet more complex

P. Atzeni ITD - 3 - 28/10/2009 19

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

n,d,y,g,a,s,m Companies(n,d,y),

Grants(g,n,a,s,m) →

y',F,f, p

Organizations(n,y',F), F(g,f),

Finances(f,a,p)

Notes: •Three tuples are generated for each pair of related companies and grants•The mapping specifies that there exist an f, appearing in two places, without saying which its value should be

Page 20: Data integration and transformation 3. Data Exchange

A final issue

P. Atzeni ITD - 3 - 28/10/2009 20

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

• How do we obtain the phone to be put in finances?

• Is it the supervisor's one or the manager's?

• FKs suggest either (or even both)• Human intervention is needed to

choose

Page 21: Data integration and transformation 3. Data Exchange

Various solutions in nested caseswith possibily undesirable features

P. Atzeni ITD - 3 - 28/10/2009 21

Companies

Name Address Year

HAL NY 1920

SM Seattle 1984

PH SF 1957

Grants

GId Rec.t Amt

301 HAL 30

302 HAL 40

303 PH 30

Organizations

FundingsCode

HAL

Year

301

FinIdFId

k1

SM

PH 303 k1

302 k1

Finances

FinId Budget phone

k1 30

k1 40

k1 30

Page 22: Data integration and transformation 3. Data Exchange

A better solution

P. Atzeni ITD - 3 - 28/10/2009 22

Companies

Name Address Year

HAL NY 1920

SM Seattle 1984

PH SF 1957

Grants

GId Rec.t Amt

301 HAL 30

302 HAL 40

303 PH 30

Organizations

FundingsCode

HAL

Year

301

FinIdFId

k1

SM

PH 303 k3

302 k2

Finances

FinId Budget phone

k1 30

k2 40

k3 30

Page 23: Data integration and transformation 3. Data Exchange

A more verbose notation for mappings

P. Atzeni ITD - 3 - 28/10/2009 23

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

n,d,y,g,a,s,m Companies(n,d,y),

Grants(g,n,a,s,m) →

y',F,f, p

Organizations(n,y',F)), F(g,f),

Finances(f,a,p)

foreach c in companies, g in grantswhere c.name=g.recipient

exists o in organizations,f in o.fundings,i in financeswhere f.finId = i.finId

with o.code = c.name and f.fId = g.gId and i.budget = g.amount

query on the source

query on the targetcorrespondences

Page 24: Data integration and transformation 3. Data Exchange

The mapping as a source-to-target constraint

P. Atzeni ITD - 3 - 28/10/2009 24

v1

v2

v3

v4

Companies

Name

Address

Year

Grants

Gid

Recipient

Amount

Supervisor

Manager

Contacts

Cid

Email

Phone

f1

f2

f3

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4

foreach c in companies, g in grantswhere c.name=g.recipient

exists o in organizations,f in o.fundings,i in financeswhere f.finId = i.finId

with o.code = c.name and f.fId = g.gId and i.budget = g.amount

QS QT

"the result of QT (over the target, projected as in the with-clause) must contain the result of QS (over the source, projected as in the with-clause)"

QS

QT

Page 25: Data integration and transformation 3. Data Exchange

Syntax and restrictions

foreach x1 in g1, . . . , xn in gn

where B1

exists y1 in g'1, . . . , ym in g'mwhere B2

with e1 = e'1 and . . . and ek = e'k

foreach c in companies, g in grantswhere c.name=g.recipient

exists o in organizations,f in o.fundings,i in finances

where f.finId = i.finIdwith o.code = c.name

and f.fId = g.gIdand i.budget = g.amount

P. Atzeni ITD - 3 - 28/10/2009 25

xi in gi (generator)•xi variable•gi set (either the root or a set nested within it)

B1 conjunction of equalities over the xi variables

yi in g'iB2

similar

e1 = e'1 … equalities between a source expression and a target expression

Restrictions: See paper, page 210, lines 5+: "The mapping is well formed …"

Page 26: Data integration and transformation 3. Data Exchange

Schema constraints

• Referential integrity is essential in this approach as the basis for the discovery of "associations"

• Given the nested model, they need a rather complex definition• So, two steps

– Paths (primary paths and relative paths)– Nested referential integrity (NRI) constraints

P. Atzeni ITD - 3 - 28/10/2009 26

Page 27: Data integration and transformation 3. Data Exchange

Primary paths

• Primary path (given a schema root R, that is a first level element in the schema):

– x1 in g1, x2 in g2, …, xn in gn

• where g1 is an expression on R (just R?), gi (for i ≥ 2) g1 is an expression on xi-1

• Examples– c in companies– o in organizations– o in organizations, f in o.fundings

P. Atzeni ITD - 3 - 28/10/2009 27

Page 28: Data integration and transformation 3. Data Exchange

Relative paths

• Primary path (given a schema root R, that is a first level element in the schema):

– x1 in g1, x2 in g2, …, xn in gn

• where g1 is an expression on R (just R?), gi (for i ≥ 2) g1 is an expression on xi-1

• Relative path with respect to a variable x

– x1 in g1, x2 in g2, …, xn in gn

• where g1 is an expression on x (just x?), gi (for i ≥ 2) g1 is an expression on xi-1

• Example– f in o.fundings

P. Atzeni ITD - 3 - 28/10/2009 28

Page 29: Data integration and transformation 3. Data Exchange

Nested referential integrity (NRI) constraints

• foreach P1 exists P2 where B

– P1 is a primary path

– P2 is either a primary path or a relative path with respect to a variable in P1

– B is a conjunction of equalities between an expression on a variable of P1 and an expression on a variable of P2

• Example

foreach o in organizations, f in o.fundings

exists i in finances

where f.finId = i.finId

P. Atzeni ITD - 3 - 28/10/2009 29

Organizations

Code

Year

Fundings

FId

FinId

Finances

FinId

Budget

Phone

f4