How do you measure the cost of query? Explain.

 The cost of the query is the time taken by the query to hit the database and return the result. It involves query processing time i.e., the time taken to parse and translate the query, optimize it, evaluate, execute and return the result to the user is called the cost of the query. Executing the optimized query involves hitting the primary and secondary memory based on the file organization method. Depending on file organization and the indexes used, the time taken to retrieve the data may vary. Query cost considers the number of different resources that are listed below:

  • The number of disk accesses / the number of disk block transfers / the size of the table
  • Time is taken by the CPU for executing the query
For simplicity, we just use the number of block transfers from disk and the number of seeks as the cost measures of a query-evaluation plan. Suppose a query needs to seek S times to fetch a record and there are b blocks that need to be returned to the user. The disk I/O cost is calculated as below
Query Cost b* tr + S * ts
Where,
b-block transfer
S-seeks
tr- time to transfer one block
ts- time for one to seek
The values of tr and ts must be calibrated for the disk system used, if tr=0.1 ms, ts =4 ms, the block size is 4 KB, and its transfer rate is 40 MB per second. With this, we can easily calculate the estimated cost of the given query evaluation plan.
Generally, for estimating the cost, we consider the worst case that could happen. 





Comments

Popular posts from this blog

Suppose that a data warehouse for Big-University consists of the following four dimensions: student, course, semester, and instructor, and two measures count and avg_grade. When at the lowest conceptual level (e.g., for a given student, course, semester, and instructor combination), the avg_grade measure stores the actual course grade of the student. At higher conceptual levels, avg_grade stores the average grade for the given combination. a) Draw a snowflake schema diagram for the data warehouse. b) Starting with the base cuboid [student, course, semester, instructor], what specific OLAP operations (e.g., roll-up from semester to year) should one perform in order to list the average grade of CS courses for each BigUniversity student. c) If each dimension has five levels (including all), such as “student < major < status < university < all”, how many cuboids will this cube contain (including the base and apex cuboids)?

Suppose that a data warehouse consists of the four dimensions; date, spectator, location, and game, and the two measures, count and charge, where charge is the fee that a spectator pays when watching a game on a given date. Spectators may be students, adults, or seniors, with each category having its own charge rate. a) Draw a star schema diagram for the data b) Starting with the base cuboid [date; spectator; location; game], what specific OLAP operations should perform in order to list the total charge paid by student spectators at GM Place in 2004?

Discuss classification or taxonomy of virtualization at different levels.