10/29

32
Views and Storing XML in Relational Databases Susan B. Davidson University of Pennsylvania CIS330 – Database Management Systems Most slide content courtesy of Zack Ives.

description

 

Transcript of 10/29

Page 1: 10/29

Views and Storing XML in Relational Databases

Susan B. DavidsonUniversity of Pennsylvania

CIS330 – Database Management Systems

Most slide content courtesy of Zack Ives.

Page 2: 10/29

2

What are views?

We frequently want to reference data in a way that differs from the way it’s stored XML data HTML, text, etc. Relational data XML data Relational data Different relational representation XML data Different XML representation

Generally, these can all be thought of as different views over the data A view is a named query It is the DB analog of methods with arguments in PL We will start with views in the same model (relational,

XML), and then address moving XML data to a relational format.

Page 3: 10/29

3

Views in SQL A view is first created (CREATE VIEW). We then use the name of the view to invoke the

query (treating it as if it were the relation it returns)

Creating a view:CREATE VIEW V(A,B,C) AS

SELECT A,B,C FROM R WHERE R.A = “123”;

This expands in the query processor to:

SELECT * FROM (SELECT A,B,C FROM R WHERE R.A = “123”) AS V, RWHERE V.B = 5

AND V.C = R.C

Using the view:SELECT * FROM V, R WHERE V.B=5 AND V.C=R.C

Page 4: 10/29

4

Views in XQuery

In XQuery, views are defined as functions.Creating a view:declare function V() as element(content)* {

for $r in doc(“R”)/root/tree, $a in $r/a, $b in $r/b, $c in $r/cwhere $a = “123”return <content>{$a, $b, $c}</content> }

Using a view:for $v in V()/content, $r in doc(“R”)/root/treewhere $v/b = $r/breturn $v

Page 5: 10/29

5

Why are views useful?

In addition to describing transformations from one schema to another, views have several common uses:

Providing security/access control• We can assign users permissions on different

views• Can select rows or project out columns so we

only reveal what we want!

Can be used as relations in other queries• Allows the user to query things that make more

sense

Page 6: 10/29

6

Virtual vs. Materialized Views

A virtual view is a named query that is actually re-computed every time – as shown on the previous slide

CREATE VIEW V(A,B,C) AS

SELECT A,B,C FROM R WHERE R.A = “123”

A materialized view is one that is computed once and its results are stored as a table Think of this as a cached answer These are incredibly useful! Techniques exist for using materialized views to answer

other queries

SELECT * FROM V, RWHERE V.B = 5 AND V.C = R.C

Page 7: 10/29

7

Example

Suppose V is defined as “select * from R where R.A= “123”. If R is initially:

Then the result of evaluating “select * from V” is

Suppose we delete (123, 8, World) from R. Then the result of “select * from V” should be

A B C 123 5 Atlas 456 10 Guide 123 8 World

A B C 123 5 Atlas 123 8 World

A B C 123 5 Atlas

Page 8: 10/29

8

Views Should Stay Fresh

Views (sometimes called intensional relations) behave, from the perspective of a query language, exactly like base relations (extensional relations)

But there’s an association that should be maintained: If tuples change in the base relation, they should

change in the view (whether it’s materialized or not)

If tuples change in the view, that should reflect in the base relation(s)

Page 9: 10/29

9

View Maintenance and the View Update Problem

There exist algorithms to incrementally recompute a materialized view when the base relations change

We can try to propagate view changes to the base relations This is not hard for the previous example. However, there are lots of views that aren’t easily updatable:

We can ensure views are updatable by enforcing certain constraints (e.g., no aggregation),but this limits the kinds of views we can have

A B

1 2

2 2

B C

2 4

2 3

R S A B C

1 2 4

1 2 3

2 2 4

2 2 3

R⋈S

delete?

Page 10: 10/29

10

“Publishing” XML Views of Relational Data

It can be done with SQL/XML, an extension of the SQL standard (see http://sqlxml.org)

(Don’t confuse with old and lame SQLXML for SQL Server.)

select xmlelement(name “Customer”,

xmlelement(name “CustID”, c.CustId),

xmlelement(name “CustName”, c.CustName),

xmlelement(name “City”, c.City) )

from customers c

where c.Status = “preferred”

This is a very valuable tool for B2B (business-to-business) data exchange. Available in Oracle, DB2, SQL Server.

Page 11: 10/29

11

Embedding XML in a Relational Database

Straightforward solution: add attributes of type “XML”. Promoted by the same SQL/XML standard.

create table clients(

id int primary key not null,

name varchar(50),

status varchar(10),

contactinfo xml )

Available in Oracle, DB2, SQL Server. Syntax may vary. Above syntax is from DB2.

Page 12: 10/29

12

Querying Relationally Embedded XMLwith SQL/XML

SQL/XML standard specifies xmlexists and xmlquery for embedding XPath and XQuery into SQL. DB2 syntax.

select name from clients

where xmlexists('$c/Client/Address[zip="95116"]'

passing clients.contactinfo as "c")

select name,

xmlquery('for $e in $c/Client/email return $e'

passing contactinfo as "c")

from clients

where status = 'Gold’

Page 13: 10/29

13

SQL Extensions for XQuery (DB2)for $y in

db2-fn:xmlcolumn('CLIENTS.CONTACTINFO')/Client/Address

return $y

for $y in db2-fn:sqlquery('select contactinfo

from clients

where status=''Gold'' ’

)/Client

where $y/Address/city="San Jose"

return (

if ($y/email) then <emailList>{$y/email}

</emailList>

else $y/Address )

Page 14: 10/29

14

More Uniform Ways for Storing XML in an RDBMS: Mapping Relational XML

We know the following: XML data is tree-like XML is SEMI-structured

There’s some structured “stuff”, especially if it follows a DTD

There is some unstructured “stuff”, eg. text

Issues relate to describing XML structure, particularly parent/child in a relational encoding Relations are flat Tuples can be “connected” via foreign-key/primary-

key links

Page 15: 10/29

15

The Simplest Way to Encode a Tree

Suppose we had:<tree id=“0”> <content id=“1”> <sub-content>XYZ </sub-content> <i-content>14 </i-content> </content></tree>

If we have no IDs, we CREATE values…

BinaryLikeEdge(key, label, type, value, parent)

key

label type

value

parent

0 tree ref - -

1 content ref - 0

2 sub-content

ref - 1

3 i-content ref - 1

4 - str XYZ 2

5 - int 14 3What are shortcomings here?

Page 16: 10/29

16

Florescu/Kossmann Improved Edge Approach

Consider order, typing; separate the values Edge(parent, ordinal,

label, flag, target)

Vint(vid, value)

Vstring(vid, value)

parent

ord

label flag

target

- 1 tree ref 0

0 1 content ref 1

1 1 sub-content

str v2

1 1 i-content int v3

vid

value

v3 14

vid

value

v2 XYZ

Page 17: 10/29

17

How Do You Compute the XML?

Assume we know the structure of the XML tree (we’ll see how to avoid this later)

We can compute an “XML-like” SQL relation using “outer unions” Idea: if we take two non-union-compatible

expressions, pad each with NULLs, we can UNION them together

Let’s see how this works…

Page 18: 10/29

18

A Relation that Mirrors theXML Hierarchy <tree id=“0”>

<content id=“1”> <sub-content> XYZ </sub-content> <i-content>14</i-content> </content></tree>

Write an SQL query whose output looks like:

rLabel

rid

rOrd

clabel

cid

cOrd

sLabel sid

sOrd

str int

tree 0 1 - - - - - - - -

- 0 1 content

1 1 - - - - -

- 0 1 - 1 1 sub-content

2 1 - -

- 0 1 - 1 1 - 2 1 XYZ

-

- 0 1 - 1 2 i-content 3 1 - -

- 0 1 - 1 2 - 3 1 - 14

Page 19: 10/29

19

A Relation that Mirrors theXML Hierarchy

Output relation would look like:

rLabel

rid

rOrd

clabel

cid

cOrd

sLabel sid

sOrd

str int

tree 0 1 - - - - - - - -

- 0 1 content

1 1 - - - - -

- 0 1 - 1 1 sub-content

2 1 - -

- 0 1 - 1 1 - 2 1 XYZ

-

- 0 1 - 1 2 i-content 3 1 - -

- 0 1 - 1 2 - 3 1 - 14

Page 20: 10/29

20

A Relation that Mirrors theXML Hierarchy

Output relation would look like:

rLabel

rid

rOrd

clabel

cid

cOrd

sLabel sid

sOrd

str int

tree 0 1 - - - - - - - -

- 0 1 content

1 1 - - - - -

- 0 1 - 1 1 sub-content

2 1 - -

- 0 1 - 1 1 - 2 1 XYZ

-

- 0 1 - 1 2 i-content 3 1 - -

- 0 1 - 1 2 - 3 1 - 14

Colors are representative of separate SQL queries…

Page 21: 10/29

21

SQL for Outputting XML

For each sub-portion we preserve the keys (target, ord) of the ancestors

Root:select E.label AS rLabel, E.target AS rid, E.ord AS rOrd, null AS cLabel, null AS cid, null AS cOrd, null AS subOrd, null AS sid, null AS str, null AS intfrom Edge Ewhere parent IS NULL

First-level children:select null AS rLabel, E.target AS rid, E.ord AS rOrd, E1.label AS cLabel, E1.target AS cid, E1.ord AS cOrd, null AS …from Edge E, Edge E1where E.parent IS NULL AND E.target = E1.parent

Page 22: 10/29

22

The Rest of the Queries

Grandchild:select null as rLabel, E.target AS rid, E.ord AS rOrd, null AS cLabel, E1.target AS cid, E1.ord AS cOrd, E2.label as sLabel, E2.target as sid, E2.ord AS sOrd, null as …from Edge E, Edge E1, Edge E2where E.parent IS NULL AND E.target = E1.parent AND E1.target = E2.parent

Strings:select null as rLabel, E.target AS rid, E.ord AS rOrd, null AS cLabel, E1.target AS cid, E1.ord AS cOrd, null as sLabel, E2.target as sid, E2.ord AS sOrd, Vi.val AS str, null as intfrom Edge E, Edge E1, Edge E2, Vint Vi where E.parent IS NULL AND E.target = E1.parent AND E1.target = E2.parent AND Vi.vid = E2.target

How would we do integers?

Page 23: 10/29

23

Finally…

Union them all together:( select E.label as rLabel, E.target AS rid, E.ord AS rOrd, … from Edge E where parent IS NULL)UNION ( select null as rLabel, E.target AS rid, E.ord AS rOrd, E1.label AS cLabel, E1.target AS cid, E1.ord AS cOrd, null as … from Edge E, Edge E1 where E.parent IS NULL AND E.target = E1.parent) UNION ( . :) UNION ( . :)

Then another module will add the XML tags, and we’re done!

Page 24: 10/29

24

“Inlining” Techniques

Folks at Wisconsin noted we can exploit the “structured” aspects of semi-structured XML If we’re given a DTD, often the DTD has a lot of

required (and often singleton) child elements Book(title, author*, publisher)

Recall how normalization worked: Decompose until we have everything in a relation

determined by the keys … But don’t decompose any further than that

Shanmugasundaram et al. try not to decompose XML beyond the point of singleton children

Page 25: 10/29

25

Inlining Techniques

Start with DTD, build a graph representing structure

tree

content

sub-content i-content

*

* *

• The edges are annotated with ?, * indicating repetition,optionality of children

• They simplify the DTD to figure this out

@id

@id

?

Page 26: 10/29

26

Building Schemas

Now, they tried several alternatives that differ in how they handle elements w/multiple ancestors Can create a separate relation for each path Can create a single relation for each element Can try to inline these

For tree examples, these are basically the same Combine non-set-valued things with parent Add separate relation for set-valued child elements Create new keys as needed

name

book author

Page 27: 10/29

27

Schemas for Our Example

TheRoot(rootID) Content(parentID, id, @id) Sub-content(parentID, varchar) I-content(parentID, int)

If we suddenly changed DTD to <!ELEMENT content(sub-content*, i-content?) what would happen?

Page 28: 10/29

28

XQuery to SQL

Inlining method needs external knowledge about the schema Needs to supply the tags and info not stored in

the tables

We can actually directly translate simple XQuery into SQL over the relations – not simply reconstruct the XML

Page 29: 10/29

29

An Example

for $X in document(“mydoc”)/tree/contentwhere $X/sub-content = “XYZ”return $X

The steps of the path expression are generally joins … Except that some steps are eliminated by the fact

we’ve inlined subelements Let’s try it over the schema:

TheRoot(rootID)Content(parentID, id, @id)Sub-content(parentID, varchar)I-content(parentID, int)

Page 30: 10/29

30

XML Views of Relations

We’ve seen that views are useful things Allow us to store and refer to the results of

a query We’ve seen an example of a view that

changes from XML to relations – and we’ve even seen how such a view can be posed in XQuery and “unfolded” into SQL

Page 31: 10/29

31

An Important Set of Questions

Views are incredibly powerful formalisms for describing how data relates: fn: rel … rel rel

Can I define a view recursively? Why might this be useful in the XML construction

case? When should the recursion stop? Suppose we have two views, v1 and v2

How do I know whether they represent the same data?

If v1 is materialized, can we use it to compute v2? This is fundamental to query optimization and data

integration, as we’ll see later

Page 32: 10/29

32

Summary

We’ve seen that views are useful things, and are heavily used within database applications as well as for data exchange.

Views allow us to store and refer to the results of a query (materialized vs. virtual views)

We’ve seen an example of a view that changes from XML to relations – and we’ve even seen how such a view can be posed in XQuery and “unfolded” into SQL

We have also seen how to define XML views of relational data