Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are given the following SQL query. Assume that for evaluating this query you have 10 buffers available for your use. The size of a

image text in transcribed

You are given the following SQL query. Assume that for evaluating this query you have 10 buffers available for your use. The size of a buffer is same as size of a page on the disk. The cost of a plan to execute a query is measured in terms of disk accesses. A disk access consists of either reading a single page from disk into a buffer, or writing a buffer onto a single page. Therefore, e.g., the cost of reading 5 pages is 5, irrespective of how and when those 5 pages are read. You are not required to do any duplication removal; this makes projection operator straightforward.

select x.A from r x, s y where x.B = y.B and x.A > 55 and y.H = 100

1. Express the above query as an algebraic expression by converting the from clause to a cross product, where clause to a single selection, and the select clause to a projection.

2. Replace the cross product in the expression of Part 1 by a natural join.

3. Transform the algebraic expression of Part 2 to an expression tree. Your conversion should be literal at this point, without any consideration for algebraic optimization.

4. Estimate the cost of evaluating the expression tree of Part 3. Remember that you have 10 buffers available to you in all parts. Dont forget to use buffers to your advantage whenever you can.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing

Authors: David M. Kroenke

12th Edition International Edition

1292023422, 978-1292023427

More Books

Students also viewed these Databases questions

Question

=+LO 14-2 Explain how to characterize an organizations culture.

Answered: 1 week ago

Question

Explain the causes of indiscipline.

Answered: 1 week ago