1 / 20

Lossless Decomposition

Lossless Decomposition. Elias Aseged SE 157B - DB 2. What is Decomposition?. Decomposition – the process of breaking down in parts or elements. Decomposition in database means breaking tables down into multiple tables From Database perspective means going to a higher normal form.

Télécharger la présentation

Lossless Decomposition

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lossless Decomposition Elias Aseged SE 157B - DB 2

  2. What is Decomposition? • Decomposition – the process of breaking down in parts or elements. • Decomposition in database means breaking tables down into multiple tables • From Database perspective means going to a higher normal form

  3. Decomposition Important that decompositions are “good”, Two Characteristics of Good Decompositions • 1) Lossless • 2) Preserve dependencies

  4. What is lossless? Lossless means functioning without a loss. In other words, retain everything. Important for databases to have this feature.

  5. Formal Definition • Let R be a relation schema. • Let F be a set of functional dependencies on R. • Let and form a decomposition of R. • The decomposition is a lossless-join decomposition of R if at least one of the following functional dependencies are in F+ 1) R1 ∩ R2  R1 2) R1 ∩ R2  R2

  6. In Simpler Terms… • R1 ∩ R2  R1 • R1 ∩ R2  R2 If R is split into R1 and R2, for the decomposition to be lossless then at leastone of the two should hold true. Projecting on R1 and R2, and joining back, results in the relation you started with

  7. Why lossless? Ensures that attributes involved in the natural join (R1 ∩ R2) are a candidate key for at least one of the two relations. This ensures we can never get the situation where false tuples are generated, as for any value on the join attributes there will be a unique tuple in one of the relations.

  8. Lossless Decomposition A decomposition is lossless if we can recover: R(A,B,C) R1(A,B) R2(A,C) R’(A,B,C) should be the same as R(A,B,C) Decompose Recover Must ensure R’ = R

  9. Lossless Decomposition • Sometimes the same set of data is reproduced: • (Word, 100) + (Word, WP)  (Word, 100, WP) • (Oracle, 1000) + (Oracle, DB)  (Oracle, 1000, DB) • (Access, 100) + (Access, DB)  (Access, 100, DB)

  10. Lossy Decomposition • Sometimes it’s not: • (Word, WP) + (100, WP) = (Word, 100, WP) • (Oracle, DB) + (1000, DB) = (Oracle, 1000, DB) • (Oracle, DB) + (100, DB) = (Oracle, 100, DB) • (Access, DB) + (1000, DB) = (Access, 1000, DB) • (Access, DB) + (100, DB) = (Access, 100, DB) What’swrong?

  11. Ensuring lossless decomposition R(A1, ..., An, B1, ..., Bm, C1, ..., Cp) R1(A1, ..., An, B1, ..., Bm) R2(A1, ..., An, C1, ..., Cp) If A1, ..., An B1, ..., Bmor A1, ..., An C1, ..., Cp Then the decomposition is lossless Note: don’t need both

  12. Identifying a Loss Decomposition • Make a table for sub schemas of R • Fill in table with distinguished variables (corresponding to the sub schemas) • If one row is full of distinguished variables, it’s lossless • If no one row is full, add distinguished variables • To add distinguished variables • 2 or more rows with distinguished variables on LHS • 1 or more rows with distinguished variables on RHS • 1 or more rows with non-distinguished variables on RHS

  13. Example 1 (From Class) R(A B C D E) • FD1 = (A B) • FD2 = (BC  E) • FD3 = (ED  A) R1=(AB); R2=(ACDE);

  14. Answer A B C D E R1 R2 *This decomposition is lossless

  15. Example 2 Is this decomposition lossless? • R (A B C D E) FD1 – AB  C FD2 – C E FD3 – BD FD4 – EA R1=(BCD); R2=(ACE);

  16. Answer A B C D E • If you do this procedure and you don’t have one row full of distinguished variables, then the decomposition is lossy. R1 R2 *This decomposition is lossless

  17. R(A B C D E) FD1: A BC FD2: BD  CE FD3: E  AD FD4: CE  A R1(ABC) = R2 (BCDE) =

  18. Conclusion Decomposing is the act of breaking tables down in order to achieve higher normal form. Decompositions should always be lossless. • This confirms that information in the original relation can be accurately reconstructed based on the decomposed relations. Remember that for a decomposition to be considered “GOOD” it must also preserve functional dependencies.

  19. Questions?

  20. References • http://infolab.stanford.edu/~ullman/fcdb/spr99/lec14.pdf • http://www.cs.sfu.ca/CC/354/zaiane/material/notes/Chapter7/node7.html • http://www.cs.sjsu.edu/~lee/cs157b/29SpCS157BL14HuffmanCode&LosslessDecomposition.ppt

More Related