Chapter 12:Query Processing Overview Measures of Query Cost Selection Operation Sorting Join Operation Other Operations Evaluation of Expressions Database System Concepts -6th Edition 12.2 ©Silberschat乜,Korth and Sudarshan
Database System Concepts - 6 12.2 ©Silberschatz, Korth and Sudarshan th Edition Chapter 12: Query Processing Overview Measures of Query Cost Selection Operation Sorting Join Operation Other Operations Evaluation of Expressions
Basic Steps in Query Processing 1.Parsing and translation 2.Optimization 3.Evaluation parser and relational-algebra query translator expression optimizer query output evaluation engine execution plan data statistics about data Database System Concepts-6th Edition 12.3 ©Silberschat乜,Korth and Sudarshan
Database System Concepts - 6 12.3 ©Silberschatz, Korth and Sudarshan th Edition Basic Steps in Query Processing 1. Parsing and translation 2. Optimization 3. Evaluation
Basic Steps in Query Processing (Cont.) Parsing and translation translate the query into its internal form.This is then translated into relational algebra. Parser checks syntax,verifies relations Evaluation The query-execution engine takes a query-evaluation plan, executes that plan,and returns the answers to the query. Database System Concepts-6th Edition 12.4 ©Silberschat乜,Korth and Sudarshan
Database System Concepts - 6 12.4 ©Silberschatz, Korth and Sudarshan th Edition Basic Steps in Query Processing (Cont.) Parsing and translation translate the query into its internal form. This is then translated into relational algebra. Parser checks syntax, verifies relations Evaluation The query-execution engine takes a query-evaluation plan, executes that plan, and returns the answers to the query
Basic Steps in Query Processing Optimization A relational algebra expression may have many equivalent expressions E.g.,salary<75000(Isalary(instructor)is equivalent to IIsalary (Osalary<75000(instructor) Each relational algebra operation can be evaluated using one of several different algorithms Correspondingly,a relational-algebra expression can be evaluated in many ways. Annotated expression specifying detailed evaluation strategy is called an evaluation-plan. E.g.,can use an index on salary to find instructors with salary 75000, or can perform complete relation scan and discard instructors with salary≥75000 Database System Concepts-6th Edition 12.5 ©Silberschat乜,Korth and Sudarshan
Database System Concepts - 6 12.5 ©Silberschatz, Korth and Sudarshan th Edition Basic Steps in Query Processing : Optimization A relational algebra expression may have many equivalent expressions E.g., salary75000(salary(instructor)) is equivalent to salary(salary75000(instructor)) Each relational algebra operation can be evaluated using one of several different algorithms Correspondingly, a relational-algebra expression can be evaluated in many ways. Annotated expression specifying detailed evaluation strategy is called an evaluation-plan. E.g., can use an index on salary to find instructors with salary < 75000, or can perform complete relation scan and discard instructors with salary 75000
Basic Steps:Optimization(Cont.) Query Optimization:Amongst all equivalent evaluation plans choose the one with lowest cost. Cost is estimated using statistical information from the database catalog e.g.number of tuples in each relation,size of tuples,etc. In this chapter we study How to measure query costs Algorithms for evaluating relational algebra operations How to combine algorithms for individual operations in order to evaluate a complete expression In Chapter 14 We study how to optimize queries,that is,how to find an evaluation plan with lowest estimated cost Database System Concepts-6th Edition 12.6 ©Silberschat乜,Korth and Sudarshan
Database System Concepts - 6 12.6 ©Silberschatz, Korth and Sudarshan th Edition Basic Steps: Optimization (Cont.) Query Optimization: Amongst all equivalent evaluation plans choose the one with lowest cost. Cost is estimated using statistical information from the database catalog e.g. number of tuples in each relation, size of tuples, etc. In this chapter we study How to measure query costs Algorithms for evaluating relational algebra operations How to combine algorithms for individual operations in order to evaluate a complete expression In Chapter 14 We study how to optimize queries, that is, how to find an evaluation plan with lowest estimated cost