Download presentation
Presentation is loading. Please wait.
1
1 Administrivia HW3 deadline extended: Tuesday 10/7 Revised upcoming schedule: Thurs. 10/2: Querying XML Tues. 10/7: More on XML; beginning of views; HW4 out Thurs. 10/9: Views + datalog, ctd.; review for midterm Tues. 10/14: Fall Break Thurs. 10/16: HW4 due; Midterm
2
2 Lossless Join Decomposition R 1, … R k is a lossless join decomposition of R w.r.t. an FD set F if for every instance r of R that satisfies F, R 1 (r) ⋈... ⋈ R k (r) = r R 1, R 2 is a lossless join decomposition of R with respect to F iff at least one of the following dependencies is in F+: (R 1 R 2 ) R 1 – R 2 or(R 1 R 2 ) R 2 – R 1
3
3 Dependency Preservation Ensures we can check whether a FD X Y is violated during DB updates, without using a join: F Z, the projection of FD set F onto attribute set Z, is: {X Y | X Y F +, X Y Z} i.e., it is those FDs only applicable to Z’s attributes A decomposition R 1, …, R k is dependency preserving if F + = (F R 1 ... F R k ) + (note we need an extra closure!) We don’t lose the ability to test the “cover” of our FDs in a single table, just because we decompose
4
4 Example 1 For Schema R(sid, name, serno, cid, subj, exp-grade) and FD set: sid nameserno cid cid subjsid, serno exp-grade Is R 1 (sid, name) and R 2 (serno, subj, cid, exp-grade): A lossless decomposition? Is it dependency-preserving? How about R1(sid, name) and R2(sid, serno, subj, cid, exp-grade)?
5
5 Example 2 Given schema R(name, street, city, st, zip, item, price), FD setname street, citystreet, city st street, city zipname, item price and decomposition R 1 (name, street, city, st, zip) and R 2 (name, item, price) Is it lossless? Is it dependency preserving? What if we replaced the first FD with name, street city?
6
6 A More Disturbing Example… Given schema R(sid, fid, subj) and FD set: fid subjsid, subj fid Consider the decomposition R 1 (sid, fid) and R 2 (fid, subj) Is it lossless? Is it dependency preserving? If it isn’t, can you think of a decomposition that is? Can you do this non-redundantly?
7
7 Redundancy vs. FDs Ideally, we want a design s.t. for each nontrivial dependency X Y, X is a superkey for some relation schema in R We just saw that this isn’t always possible in a non- redundant way… Thus we have two kinds of normal forms
8
8 Two Important Normal Forms Boyce-Codd Normal Form (BCNF). For every relation scheme R and for every X A that holds over R, either A X (it is trivial),or or X is a superkey for R Third Normal Form (3NF). For every relation scheme R and for every X A that holds over R, either A X (it is trivial), or X is a superkey for R, or A is a member of some key for R
9
9 Normal Forms Compared BCNF is preferable, but sometimes in conflict with the goal of dependency preservation It’s strictly stronger than 3NF Let’s see algorithms to obtain: A BCNF lossless join decomposition (nondeterministic) A 3NF lossless join, dependency preserving decomposition
10
10 BCNF Decomposition Algorithm (from Korth et al.; our book gives recursive version) result := {R} compute F+ while there is a schema R i in result that is not in BCNF { let A B be a nontrivial FD on R i s.t. A R i is not in F+ and A and B are disjoint result:= (result – R i ) {(R i - B), (A,B)} }
11
11 3NF Decomposition Algorithm Let F be a minimal cover i:=0 for each FD A B in F { if none of the schemas R j, 1 j i, contains AB { increment i R i := (A, B) } if no schema R j, 1 j i contains a candidate key for R { increment i R i := any candidate key for R } return (R 1, …, R i ) Build dep.- preserving decomp. Ensure lossless decomp.
12
12 Summary of Normalization We can always decompose into 3NF and get: Lossless join Dependency preservation But with BCNF we are only guaranteed lossless joins BCNF is stronger than 3NF: every BCNF schema is also in 3NF The BCNF algorithm is nondeterministic, so there is not a unique decomposition for a given schema R
13
XML: Semistructured Data Zachary G. Ives University of Pennsylvania CIS 550 – Database & Information Systems October 1, 2003 Some slide content courtesy of Susan Davidson & Raghu Ramakrishnan
14
14 Why XML? XML is the confluence of several factors: The Web needed a more declarative format for data Documents needed a mechanism for extended tags Database people needed a more flexible interchange format “Lingua franca” of data It’s parsable even if we don’t know what it means! Original expectation: The whole web would go to XML instead of HTML Today’s reality: Not so… But XML is used all over “under the covers”
15
15 Why DB People Like XML Can get data from all sorts of things Allows us to touch data we don’t own Interesting relationships with DB techniques Can do relational-style operations Leverages ideas from object-oriented and semistructured data Blends schema and data into one format Unlike relational model, where we need schema first … But too little schema can be a drawback, too!
16
16 XML Anatomy Kurt P. Brown PRPL: A Database Workload Specification Language 1992 Univ. of Wisconsin-Madison Paul R. McJones The 1995 SQL Reunion Digital System Research Center Report SRC1997-018 1997 db/labs/dec/SRC1997-018.html http://www.mcjones.org/System_R/SQL_Reunion_95/ Processing Instr. Element Attribute Close-tag Open-tag
17
17 Well-Formed XML A legal XML document – fully parsable by an XML parser All open-tags have matching close-tags (unlike so many HTML documents!), or a special: shortcut Attributes (which are unordered, in contrast to elements) only appear once in an element There’s a single root element XML is case-sensitive
18
18 XML as a Data Model XML “information set” includes 7 types of nodes: Document (root) Element Attribute Processing instruction Text (content) Namespace: Comment XML data model includes this, plus typing info, plus order info and a few other things
19
19 XML Data Model Visualized (and simplified!) Root ?xml dblp mastersthesis article mdate key authortitleyearschool editortitleyearjournalvolumeee mdate key 2002… ms/Brown92 Kurt P…. PRPL… 1992 Univ…. 2002… tr/dec/… Paul R. The… Digital… SRC… 1997 db/labs/dec http://www. attribute root p-i element text
20
20 What Does XML Do? Serves as a document format that’s better than HTML Allows custom tags (e.g., used by MS Word, openoffice) Supplement it with stylesheets (XSL) to define formatting Provides an exchange format for data (still need to agree on terminology) Basis for RDF format for describing libraries and the Semantic Web (more on this later) Format for marshalling and unmarshalling data in SOAP and Web Services
21
21 XML as a Super-HTML (MS Word) CIS 550: Database and Information Systems Fall 2003 311 Towne, Tuesday/Thursday 1:30PM – 3:00PM
22
22 XML Encodes Relations sidsernoexp-grade 1570103B 23550103A 1 570103 B 23 550103 A Student-course-grade
23
23 But XML is More Flexible… “Non-First-Normal-Form” (NF 2 ) John Joan Jill Felicity …
24
24 XML and Code Web Services (.NET, recent Java web service toolkits) are using XML to pass parameters and make function calls Why? Easy to be forwards-compatible Easy to read over and validate (?) Generally firewall-compatible Drawbacks? XML is a verbose and inefficient encoding! XML is used to represent: SOAP: the “envelope” that data is marshalled into XML Schema: gives some typing info about structures being passed WSDL: the IDL (interface def language) UDDI: provides an interface for querying about web services
25
25 What If We Have Multiple Sources with the Same Tags? Namespaces allow us to specify a context for different tags Two parts: Binding of namespace to URI Qualified names http://www.fictitious.com/mypath is in namespace myns is the same is a different tag
26
26 XML Isn’t Normally Enough It’s too unconstrained for many cases! How will we know when we’re getting garbage? How will we query? How will we understand what we got? We also need: Some idea of the structure Our focus next Presentation, in some cases – XSL(T) We’ll talk about this soon Some way of interpreting the tags…? We’ll talk about this later in the semester
27
27 Document Type Definitions (DTDs) The DTD is an EBNF grammar defining XML structure XML document specifies an associated DTD, plus the root element DTD specifies children of the root (and so on) DTD defines special significance for attributes: IDs – special attributes that are analogous to keys for elements IDREFs – references to IDs IDREFS – a nasty hack that represents a list of IDREFs
28
28 An Example DTD Example DTD: <!ATTLIST mastersthesis(mdateCDATA#REQUIRED keyID#REQUIRED advisorCDATA#IMPLIED> … Example use of DTD in XML file: …
29
29 Representing Graphs in XML John Smith Paper1 Paper2 …
30
30 Graph Data Model Root !DOCTYPE graph author article name title ref John Smith author1 Paper2 ?xml article id author1 author title Paper1
31
31 Graph Data Model Root !DOCTYPE graph author article name title ref John Smith Paper2 ?xml article id author1 author title Paper1
32
32 DTDs Aren’t Enough for Some People DTDs capture grammatical structure, but have some drawbacks: Not themselves in XML – inconvenient to build tools for them Don’t capture database datatypes’ domains IDs aren’t a good implementation of keys Why not? No way of defining OO-like inheritance No way of expressing FDs
33
33 XML Schema Aims to address the shortcomings of DTDs … But an “everything including the kitchen sink” spec Features: XML syntax Better way of defining keys using XPaths (which we’ll see next time) Type subclassing that’s more complex than in a programming language … And, of course, domains and built-in datatypes
34
34 Schema Example
35
35 Whither XML Schema? Adopted by a few tools, but… The jury is still out on this spec Considered too big, bulky, inconsistent Still no way of expressing FDs, and the key mechanism isn’t that elegant Other people have defined more elegant schema languages, FD languages, and key languages (much of the work was here @ Penn) But it’s also at the core of the data model of the XQuery language and the other W3C specs…
36
36 Designing an XML Schema/DTD XML data design is generally not as formalized as relational data design We can still use ER diagrams to break into entity, relationship sets ER diagrams have extensions for “aggregation” – treating smaller diagrams as entities – and for composite attributes Note that often we already have our data in relations and need to design the XML schema to export them! We generally orient the XML tree around the “central” objects in a particular application A big decision: element vs. attribute Element if it has its own properties, or if you *might* have more than one of them Attribute if it is a single property – or perhaps not!
37
37 Wrap-up XML is a non-first-normal-form representation Can represent documents, data Standard data exchange format Several competing schema formats – esp., DTD and XML Schema – provide typing information Next time: 3 languages for XML querying
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.