Analyzing and Optimizing T-SQL Query Performance on Microsoft SQL Server using SET and DBCC (PDF)

By Bill Graziano on 25 July 2002 | 2 Comments | Tags: Query Tuning


Quest Software published with white paper on tuning queries. It's got some pretty neat information in it. Follow the link to Analyzing and Optimizing T-SQL Query Performance on Microsoft SQL Server using SET and DBCC (PDF)...

Discuss this article: 2 Comments so far. Print this Article. This page has been read 9,252 times.

If you like this article you can sign up for our newsletter. We send it out each week that we post a new article. There's an opt-out link at the bottom of each newsletter so it's easy to unsubscribe at any time.

Email Address:

Email ThisSubscribe to this feedKick itSave to del.icio.usView blog reactions

Related Articles

What I Wish Developers Knew About SQL Server (Presentation) (11 October 2007)

Avoid enclosing Indexed Columns in a Function in the WHERE clause (12 September 2007)

Introduction to Parameterization in SQL Server (7 August 2007)

Best Practices for Query Parameterization (24 January 2007)

Query Parameterization and Plan Cache (23 January 2007)

Five Ways to Rev up Your SQL Performance (27 June 2002)

Other Recent Forum Posts

set 2 variables in 1 select (4 Replies)

system timeout error (3 Replies)

Lookups and Indexes (1 Reply)

SQL SELECT Statement (21 Replies)

SECURITY and EMAIL (1 Reply)

SQL Newbie with a join question (16 Replies)

Server I/O Design - Reality vs Ideal (4 Replies)

Unknown Disk Space filling (2 Replies)

Subscribe to SQLTeam.com

Weekly SQL Server newsletter with articles, forum posts, and blog posts via email:

SQLTeam.com Articles via RSS

SQLTeam.com Weblog via RSS

- Advertisement -

- Sponsor's Message -

SQLShare.com Videos

Using DatePart and DateName

Ever want to get the month out of a date as a number, or as literal text? Many people will do it by parsing the date as a string, but we've got some built in functions that will do it cleanly and consistently.

Renaming a Database

You won't do it often, but it's nice to know how, and you're not still using sp_renamedb are you? Join us for a quick look at how to use the alter syntax to change the db name along with a tip on how to quickly disconnect any remaining users from the database.

File Share Subscriptions in Reporting Services

Whether you want to generate PDF invoices for customers or do a daily export that will get processed by one of your vendors, the ability to deliver reports to a file share is a useful and simple feature baked in to Reporting Services. In this lesson Devin will show you how to do it and how to set most of the common options.

File Share Subscriptions in Reporting Services

Whether you want to generate PDF invoices for customers or do a daily export that will get processed by one of your vendors, the ability to deliver reports to a file share is a useful and simple feature baked in to Reporting Services. In this lesson Devin will show you how to do it and how to set most of the common options.

Using DB_ID and DB_Name Functions

Simple but effective, DB_ID and DB_Name give you a concise way to look up the id of a database from a name, or look up the name of a database from an id. There are times when you'll need to write the join to sys.sysdatabases, but when all you need is a quick conversion, these functions get it done.