Sign In
SQL Server Engine Tips
Guidelines, Best Practices, TSQL and SQL Programming Tips & Tricks.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Blog Home
About
Email Blog Author
Share this
RSS for posts
Atom
RSS for comments
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Announcements
Architecture
Best Practices
Catalog Views
Dynamic Management View
General
Oracle SQL Migration
Pages
Performance - Engine
Performance - SQL/TSQL
Performance - Tools
Performance Troubleshooting
Programming
SQL Server 2005
SQL Server 2008
Archive
Archives
July 2008
(1)
June 2008
(2)
August 2007
(1)
April 2007
(1)
March 2007
(3)
February 2007
(3)
December 2006
(1)
November 2006
(2)
September 2006
(3)
July 2006
(1)
June 2006
(3)
May 2006
(1)
February 2006
(3)
October 2005
(7)
September 2005
(3)
August 2005
(2)
July 2005
(3)
June 2005
(3)
May 2005
(2)
Running Index Tuning Wizard (ITW) or Database Engine Tuning Advisor (DTA) on production machines...
MSDN Blogs
>
SQL Server Engine Tips
>
Running Index Tuning Wizard (ITW) or Database Engine Tuning Advisor (DTA) on production machines...
Running Index Tuning Wizard (ITW) or Database Engine Tuning Advisor (DTA) on production machines...
SQL Server Engine Team
14 Feb 2006 9:58 PM
Comments
3
Index Tuning Wizard (ITW in SQL Server 2000) or Database Engine Tuning Advisor (DTA in SQL Server 2005) allow you to analyze a workload and make recommendations for the database based on the workload. The recommendations are schema changes, partitioning or indexed view creation for example. During the recommendation process, ITW or DTA can create hypothetical indexes or statistics it will use to analyze the workload. Creation of these indexes or statistics on any table increments the schema version information that is maintained by the database engine. As a result of this, any subsequent queries that reference tables that were touched by ITW or DTA will result in recompilation. This recompilation will be at the statement level in SQL Server 2005 or at the stored procedure level in SQL Server 2000. This is something that you should watch out for when trying to use ITW or DTA on a production machine directly. It is always better to run the tool on a copy of the production database on a different machine in isolation so you can review the changes without affecting other workload and also apply the changes easily without interruption.
--
Umachandar
3 Comments
Performance - Tools
Blog - Comment List MSDN TechNet
Comments
Loading...
Leave a Comment
Name
Comment
Please add 6 and 3 and type the answer here:
Post