程序代写代做 IOS cache C database CS W186 Introduction to Database Systems

CS W186 Introduction to Database Systems
Spring 2020 Josh Hug, Michael Ball DIS 7
1 Selectivity Estimation
Consider a relation R(a, b, c) with 1000 tuples. We have an index on a with 50 unique values in the range [1, 50] and an index on b with 100 unique values in the range [1, 100]. We do not have an index on c.
Use selectivity estimation to estimate the number of tuples produced by the following queries.
1. SELECT * FROM R
2. SELECT*FROMRWHEREa=42
3. SELECT*FROMRWHEREb=42
4. SELECT*FROMRWHEREc=42
5. SELECT * FROM R WHERE a <= 25 6. SELECT * FROM R WHERE b <= 25 7. SELECT * FROM R WHERE c <= 25 8. SELECT*FROMRWHEREa<=25ANDb<=25 9. SELECT*FROMRWHEREa<=25ANDc<=25 10. SELECT*FROMRWHEREa<=25ORb<=25 11. SELECT*FROMRWHEREa=b 12. SELECT*FROMRWHEREa=c CS W186, Spring 2020, DIS 7 1 For the rest of this worksheet we will try to optimize the following query: SELECT * FROMR, S, T WHERE R . b = S . b AND S . c = T . c ANDR.a <= 50; We have 3 relations: R(a,b), S(b,c), and T(c,d). • R has 1,000 data pages and 10,000 records • S has 2,000 data pages and 40,000 records • T has 3,000 data pages and 30,000 records 2 Single Table Access Plans Assume we have the following indexes: • Alt 2 unclustered index on R.a with 50 leaf pages • Alt 2 clustered index on R.b with 100 leaf pages • Alt 2 clustered indexes on S.b, T.c, and T.d (leaf page counts aren’t relevant) Also assume that it takes 2 IOs to reach the level above a leaf node and that no index or data pages are ever cached. All indexes have keys in the range [1, 100] with 100 distinct values. 1. How many IOs does a full scan on R take? 2. How many IOs does an index scan on R.a take? 3. How many IOs does an index scan on R.b take? 4. How many pages from R will advance to the next stage for all of these access plans? Now assume that the other potential single table access plans have the following IO costs: • Full scan on S: 2000 IOs • Index scan on S.b: 1500 IOs • Full scan on T: 3000 IOs • Index scan on T.c: 3500 IOs CS W186, Spring 2020, DIS 7 2 • Index scan on T.d: 3500 IOs 5. What single table access plans advance to the next stage? 3 Multi-table Plans 1. Assume we have 52 buffer pages. Calculate the IO cost for joining the following 2 joins. Assume the access plan for R is the index scan on R.b (S only had one access plan that advanced): a. R BNLJR.b=S.b S b. R SMJR.b=S.b S Assume all of the joins our database could do are as follows: 1. R BNLJ S: 1.a 2. RSMJS:1.b 3. S BNLJ R: 18,000 IOs 4. S SMJ R: 3,000 IOs 5. R BNLJ T: 30,000 IOs 6. R SMJ T: 40,000 IOs 7. T BNLJ R: 35,000 IOs 8. TSMJR:20,000IOs 9. S BNLJ T: 15,000 IOs 10. S SMJ T: 10,000 IOs 11. T BNLJ S: 25,000 IOs 12. T SMJ S: 30,000 IOs 2. Which of these joins will actually be considered by the query optimizer on pass 2? 3. Which of these joins will advance to the next pass of the query optimizer? 4. Will any of these joins produce an interesting order? 5. How could we modify the query so that the R SMJ S produces an interesting order? 6. Will the query plan: T BNLJ (R SMJ S) be considered by the final pass of the query opti- mizer? CS W186, Spring 2020, DIS 7 3