Advanced SQL Programming for SQL Server 2008

Slides:



Advertisements
Similar presentations
Tuning: overview Rewrite SQL (Leccotech)Leccotech Create Index Redefine Main memory structures (SGA in Oracle) Change the Block Size Materialized Views,
Advertisements

Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
EXECUTION PLANS By Nimesh Shah, Amit Bhawnani. Outline  What is execution plan  How are execution plans created  How to get an execution plan  Graphical.
Advanced Databases: Lecture 2 Query Optimization (I) 1 Query Optimization (introduction to query processing) Advanced Databases By Dr. Akhtar Ali.
Working with SQL Server Database Objects
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification.
Query Evaluation. An SQL query and its RA equiv. Employees (sin INT, ename VARCHAR(20), rating INT, age REAL) Maintenances (sin INT, planeId INT, day.
Introduction to Structured Query Language (SQL)
Indexes Rose-Hulman Institute of Technology Curt Clifton.
CSCI 5708: Query Processing I Pusheng Zhang University of Minnesota Feb 3, 2004.
Introduction to Structured Query Language (SQL)
1 Indexing for Performance for SQL Server 2005 Single - Table Optimization Chapter Four Jeff Garbus – Tony Cannizzo.
Practical Database Design and Tuning. Outline  Practical Database Design and Tuning Physical Database Design in Relational Databases An Overview of Database.
Module 8 Improving Performance through Nonclustered Indexes.
SQL/lesson 2/Slide 1 of 45 Retrieving Result Sets Objectives In this lesson, you will learn to: * Use wildcards * Use the IS NULL and IS NOT NULL keywords.
Physical Database Design & Performance. Optimizing for Query Performance For DBs with high retrieval traffic as compared to maintenance traffic, optimizing.
Views: Limiting Access to Data A view is a named select statement that is stored in a database as an object. It allows you to view a subset of rows or.
Ashwani Roy Understanding Graphical Execution Plans Level 200.
SQL/Lesson 4/Slide 1 of 45 Using Subqueries and Managing Databases Objectives In this lesson, you will learn to: *Use subqueries * Use subqueries with.
Module 5 Planning for SQL Server® 2008 R2 Indexing.
Microsoft AREC TAM Internship SQL Server Performance Tuning(I) Haijun Yang AREC SQL Support Team Feb, SQL Server 2000.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Indexes / Session 2/ 1 of 36 Session 2 Module 3: Types of Indexes Module 4: Maintaining Indexes.
SQL/Lesson 7/Slide 1 of 32 Implementing Indexes Objectives In this lesson, you will learn to: * Create a clustered index * Create a nonclustered index.
Physical Database Design Purpose- translate the logical description of data into the technical specifications for storing and retrieving data Goal - create.
Chapter 5 Index and Clustering
Session 1 Module 1: Introduction to Data Integrity
Creating Indexes on Tables An index provides quick access to data in a table, based on the values in specified columns. A table can have more than one.
Module 6: Creating and Maintaining Indexes. Overview Creating Indexes Understanding Index Creation Options Maintaining Indexes Introducing Statistics.
Data Integrity & Indexes / Session 1/ 1 of 37 Session 1 Module 1: Introduction to Data Integrity Module 2: Introduction to Indexes.
SQL IMPLEMENTATION & ADMINISTRATION Indexing & Views.
More SQL: Complex Queries, Triggers, Views, and Schema Modification
Practical Database Design and Tuning
Microsoft Office Access 2010 Lab 3
Microsoft SQL Server 2005 Advanced SQL Programming and Optimization
Tuning Transact-SQL Queries
Indexes By Adrienne Watt.
Indexing Structures for Files and Physical Database Design
CS522 Advanced database Systems
Record Storage, File Organization, and Indexes
Physical Changes That Don’t Change the Logical Design
Database Management System
Indices.
Module 4: Creating and Tuning Indexes
COMP 430 Intro. to Database Systems
Chapter 12: Query Processing
Database Performance Tuning and Query Optimization
Evaluation of Relational Operations
Overview of Query Optimization
Using the Set Operators
Chapter 11: Indexing and Hashing
Lecture 12 Lecture 12: Indexing.
JULIE McLAIN-HARPER LINKEDIN: JM HARPER
Steve Hood SimpleSQLServer.com
Chapter 4 Indexes.
CH 4 Indexes.
Indexing and Hashing Basic Concepts Ordered Indices
CH 4 Indexes.
Lecture 2- Query Processing (continued)
Implementation of Relational Operations
Chapter 11 Database Performance Tuning and Query Optimization
Physical Storage Structures
Evaluation of Relational Operations: Other Techniques
Diving into Query Execution Plans
Chapter 11 Managing Databases with SQL Server 2000
IST 318 Database Administration
Indexes and more Table Creation
A – Pre Join Indexes.
Chapter 11: Indexing and Hashing
All about Indexes Gail Shaw.
Presentation transcript:

Advanced SQL Programming for SQL Server 2008 Single - Table Optimization Chapter Six

Acknowledgements Microsoft SQL server, SQL EM, Query Analyzer are all trademarks of Microsoft Inc. This presentation is copyrighted. This presentation is not for re- sale This presentation shall not be used or modified without express written consent of Soaring Eagle Consulting, Inc.

Topics Examine detailed topics in query optimization Indexes with SARGs Improvised SARGs Clustered vs. nonclustered indexes Queries with OR Index covering Forcing index selection

SQL Server Search Techniques SQL Server uses three basic search techniques for query resolution Table Scans Index Searches Covered Index Searches

Table Scans If SQL Server can’t resolve a query any other way, it does a table scan Scans are expensive Table scans may be the best way to resolve a query If there is a clustered index on the table, SQL Server will try and use it instead of performing a table scan Table Scan Search select * from pt_tx where id = 1

Table Scans (Cont’d) Query Plan Verify table scans with: set statistics io on Table 'pt_tx'. Scan count 1, logical reads 38, physical reads 0, read-ahead reads 0

Table Scan Output: Update update pt_tx set id = id + 1 showplan

Index Selection Topics Optimizer selection criteria When indexes slow access When indexes cause deadlocks Index statistics and usage

Optimizer Selection Criteria During the index selection phase of optimization the optimizer decides which (if any) indexes best resolve the query Identify which indexes match the where and join clauses Estimate rows to be returned Estimate page reads

SARG Matching Indexes usually correspond with SARGs Useful indexes will specify a row or rows or set bounds for the result set An index may be used if any column of the index matches the SARG where dob between '3/3/1941' and '4/4/65' create unique index nci on authors (au_lname, au_fname)

SARG Matching (Cont’d) create unique index nci on authors (au_lname, au_fname) Which of the following queries (if any) could be helped by the index? If there are not enough rows in the table, indexes that look useful may never be used select * from authors where au_lname = 'Smith' or au_fname = 'Jim' select * from authors where au_fname = 'Jim' select * from authors where au_fname = 'Jim' and au_lname = 'Smith'

Index Selection Topics Review of index types Optimizer selection criteria When indexes slow access When indexes cause deadlocks Index statistics and usage

Index Types SQL Server provides three types of indexes Clustered Nonclustered Full text One clustered index per table Data is maintained in clustered index order 248 nonclustered indexes per table Nonclustered indexes maintain pointers to rows Full text is beyond scope

Clustered Index Mechanism With a clustered index, there will be one entry on the last intermediate index level page for each data page The data page is the leaf or bottom level of the index (Assume a clustered index on last name)

Nonclustered Index Mechanism The nonclustered index has an extra, leaf level for page / row pointers Data placement is not affected by non- clustered indexes (Assume an NCI on first name)

Clustered vs. Nonclustered A clustered index tends to be 1 I/O faster than a nonclustered index for a single-row lookup Clustered indexes are excellent for retrieving ranges of data Clustered indexes are excellent for queries with order by Nonclustered indexes are a bit slower, take up much more disk space, but are frequently the next best alternative to a table scan Nonclustered indexes may cover the query for maximal retrieval speed For some queries; covered queries, nonclustered indexes can be faster When creating a clustered index, you need free space in your database approximately equal to 120% of the total table size

Using Indexes Clustered Index Indications Columns searched by range of values Columns by which the data is frequently sorted (order by or group by) Sequentially accessed columns Static columns Join columns (if other than the primary key) Nonclustered Index Indications NCI selection tends to be much more effective if less than about 20% of the data is to be accessed NCIs help sorts, joins, group by clauses, etc., if other column(s) must be used for the CI Index covering

Other Index Limitations Maximum 16 columns Maximum 900 bytes column width (“Include” columns do not count toward limitations)

Primary Key vs. Clustering vs. Nonclustering A primary key is a logical concept, not a physical concept Indexes are physical concepts, not logical concepts There is a strong correlation between the logical concept of a key and the physical concept of an index By default, when you define relationships as part of table design, you will build indexes to support the joins / lookups By default, when you define a primary key, you will create a unique clustered index on the table Unique is good, clustered isn’t always good When you define a clustered index, the server automatically appends the key column(s) (plus a unique identifier, if necessary) to the nonclustered indexes

Key / index features Columns that are not part of the index key can be included in nonclustered indexes. Including the nonkey columns in the index can speed queries (Index covering) and can exceed the current index size limitations of a maximum of 16 key columns and a maximum index key size of 900 bytes The new ALLOW_ROW_LOCKS and ALLOW_PAGE_LOCKS options in CREATE INDEX and ALTER INDEX can be used to control the level at which locking occurs for the index The query optimizer can match more queries to indexed views than in previous versions, including queries that contain scalar expressions, scalar aggregate and user-defined functions, interval expressions, and equivalency conditions Indexed view definitions can also now contain scalar aggregate and user-defined functions with certain restrictions. (More in “Views”)

Optimizer Selection Criteria During the index selection phase of optimization the optimizer decides which (if any) indexes best resolve the query Identify which indexes match the clauses Estimate rows to be returned Estimate page reads

Index Selection Examples 1. What index will optimize this query? 2. What indexes optimize these queries? 3. In the second query, what would the net effect be of changing the range to this? select title from titles where title = ‘Alleviating VDT Eye Strain’ select title from titles where price between $5. and $10. between $500 and $600

CI vs. NCI select title from titles where price between $5. and $10. Table facts: 2,000,000 titles (= 14492 pages) 138 rows / page 1 million rows in the range

CI vs. NCI It is feasible, occasionally likely, that a table scan is faster than using a nonclustered index for specific queries The server evaluates all options at optimization time and selects the least expensive query

Or Indexing select title from titles where price between $5. and $10. or type = 'computing' Questions What indexes should (could) be used? Will a compound index help? Which column(s) should be indexed?

Or Indexing (Cont’d) select title from titles How is the following query different (from a processing standpoint)? What is a useful index for? select title from titles where price between $5. and $10. and type = 'computing' select * from authors where au_fname in ('Fred', 'Sally')

Or Clauses Format SARG or SARG select * from authors where au_lname = 'Smith' or au_fname = 'Fred' (How many indexes may be useful?) select * from authors where au_lname in ('Smith', 'Jones', 'N/A')

Or Strategy An or clause may be resolved via a table scan, a multiple match index or using or strategy Table Scan Each row is read, and criteria applied Matching rows are returned in the result set The cost of all the index accesses is greater than the cost of a table scan At least one of the clauses names a column that is not indexed, so the only way to resolve the clause is to perform a table scan

Or Strategy (Cont’d) Multiple match index Using each part of the or clause, select an index and retrieve the row Only used if the results sets can not return duplicate rows Rows are returned to the user as they are processed

Or: Query Plan select company, street2 from pt_sample where id = 2017 or id = 2163 Query Execution Plan

Index Selection and the Select List select * from publishers where pub_id = 'BB1111' Questions What is the best index? Do the columns being selected have a bearing on the index?

Index Selection and the Select List Question Should there be a difference between the utilization of the following two indexes? select royalty from titles where price between $10 and $20 create index idx1 on titles (price) /* or */ create index idx2 on titles (price, royalty)

Index Covering The server can use the leaf level of a nonclustered index the way it usually reads the data pages of a table: this is index covering The server can skip reading data pages The server can walk leaf page pointers A nonclustered index will be faster than a clustered index if the index covers the query for a range of data (why?) Adding columns to nonclustered indexes or using the include is a common method of reducing query time This has particular benefits with aggregates

Index Covering (Cont’d) Beware making the index too wide; As index width approaches row width, the benefit of covering is reduced # of levels in the index increases Index scan time approaches table scan time Remember that changes to data will cascade into indexes

Composite Indexes Composite (compound) indexes may be selected by the server if the first column of the index is specified in a where clause, or if it is a clustered index create index idx1 on employee (minit, job_id , job_lvl)

Composite Indexes (Cont’d) create index idx1 on employee (minit, job_id , job_lvl) Which queries may use the index? select * from employee where minit = 'A' and job_id != 4 and job_lvl = 135 where job_id != 4 select * from employee where minit = 'A'

Composite vs. Many Indexes Each additional index impacts update performance In order to select appropriate indexes, we need to know how many indexes the optimizer will use, and how many rows are represented by the where clause select pub_id, title, notes from titles where type = 'Computer' and price > $15.

Which are the best options in which circumstances? select pub_id, title, notes from titles where type = 'Computer' and price > $15. CI or NCI on type CI or NCI on price One index on each of type & price Composite on type, price Composite on price, type CI or NCI on type, price, pub_id, title, notes Which are the best options in which circumstances?

Index Usefulness It is imperative to be able to estimate rows returned for an index. Therefore, the server will estimate rows returned before index assignation If statistics are available (When would they not be?) the server estimates number of rows using the histogram or index density SQL Server automatically generates statistics about index key distributions using efficient sampling algorithms If you have an equality join on a unique index, the server knows only one row will match and doesn't need to use statistics The database engine tuning advisor can analyze a query and recommend indexes The more selective an index is, the more useful the index

Data Distribution You have a 1,000,000 row table. The unique key has a range (and random distribution) of 0 to 10,000,000 Question How many rows will be returned by the following query? How does the optimizer know whether to use an index or table scan? select * from table where key between 1000000 and 2000000

Index Statistics SQL Server keeps distribution information about indexes in a “statblob” column in the sysindexes table There is distribution for every index The optimizer uses this information to estimate the number of rows returned for a query The distribution information is built at index creation time and maintained by the server if set to automatically do so

Distribution Steps The server creates the statistics by walking the index, and storing appropriate key values at each step increment 10,000,000 rows have an integer key. 1 page has (8005 bytes / 4 bytes + 2 between) =~ 2000 steps 10,000,000 rows / 2000 steps = 50,000 rows / step

Distribution Steps The optimizer will walk the index, storing the key value every 20,000 rows When a query is executed The number of keys in the range * 20,000 rows / key is the approximate number of rows affected select * from table where key between 1000000 and 2000000

Viewing Index Statistics Viewed with the dbcc show_statistics dbcc show_statistics (table_name,index_name) Continued next page

Viewing Index Statistics (Cont’d) Continued next page

Explaining DBCC Show Statistics Updated date and time: When the statistics were last updated Rows: Number of rows in the table Rows Sampled: Number of rows sampled for statistics information Density: Selectivity of the index Average key length: Average length of an index row All density: Selectivity of the specified column prefix in the index Columns: Name of the index column prefix for which the all density is displayed Steps: Number of histogram values in the current distribution statistics for the specified target on the specified table

Estimating Logical Page I/O If there is no index, there will be a table scan, and the estimate will be the number of pages in the table If there is a clustered index, estimate will be the number of index levels plus the number of pages to scan For a nonclustered index, estimate will be index levels + number of leaf pages + number of qualifying rows (which will correspond to the number of physical pages to read) For a unique index and an equality join, the estimate will be 1 plus the number of index levels

When to Force Index Selection Don't Do it With every release of the server, the optimizer gets better at selecting optimal query paths Forcing the optimizer to behave in a specific manner does not allow it the freedom to change selection as data skews It also does not permit the optimizer to take advantage of new strategies as advances are made in the server software

When to Force Index Selection (Cont’d) Exceptions When you (the developer) have information about a table that SQL Server will not have at the time the query is processed (i.e., using a temp table in a nested stored procedure) Occasions when you've proven the optimizer wrong

How to Force Index Selection To force the server to use a specific index for a specific table, you must first know the index id of the index you want to use In this example, the titles index with the id of 2 will be used for the titles table, and the publishers index with an id of 1 will be used for publishers select * from titles (2), publishers (1) where titles.pub_id = publishers.pub_id

When to Force Index Selection (Cont’d) The following SQL will list all table names and their corresponding index ids Allowing you to use the following syntax to force indexes Instead, identify why the optimizer picked incorrectly select 'table'=o.name, 'index'=i.name, indid from sysindexes i, sysobjects o where i.id = o.id select * from titles (index(titleind)), publishers (index( UPKCL_pubind) ) where titles.pub_id = publishers.pub_id

Summary The optimizer uses indexes to improve query performance when possible Queries with OR may require a table scan Try to take advantage of covered queries Be careful when forcing an index

Lab: Indexes vs. Table Scans 1. Use showplan to observe what ranges of values tend to use an index versus a table scan to resolve this query. 2. Retrieve and analyze the statistics for the index NCkey2. 3. What indexes can be added to improve the query performance? 4. Add the indexes and check the query plan. 5. Change street1 in the query to key2. How does this affect your query plan? select count(street1) from pt_sample_NCkey2 where key2 between ? and ?