Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Advertise
Write for us
Articles with tag
Performance Tuning
Search for
any
content tagged
performance tuning
Items 1 to 20 of 311
Next 20 >>
Using SQL Profiler to Resolve Deadlocks in SQL Server
MVP Jonathan Kehayias brings us a short article on how to troubleshoot deadlocks in SQL Server.
Read more...
By
Jonathan Kehayias
2010/06/04 (first published: 2009/02/02)
|
Source:
SQLServerCentral.com
|
Category:
deadlock
Rating:
|
Discuss
|
Briefcase
|
16,240 reads
SQL Server 2005 Paging – The Holy Grail
Handling the paging of results in T-SQL has been a challenge for a long time. Robert Cary presents an interesting technique in this article.
Read more...
By
Robert Cary
2010/05/07 (first published: 2009/03/11)
|
Source:
SQLServerCentral.com
|
Category:
t-sql
Rating:
|
Discuss
|
Briefcase
|
16,364 reads
Get Performance Tips Directly From SQL Server
This article describes a utility that allows you to inspect cached plans and extract information that can be useful in improving the performance of your SQL.
Read more...
By
Ian Stirk
2010/04/02 (first published: 2009/06/11)
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
22,182 reads
T-SQL: Why “It Depends”
Why does everyone use "it depends" as an answer to many T-SQL questions? Bob Hovious brings us a short example of how performance can change based on data loads for the same code.
Read more...
By
Bob Hovious
2010/03/16
|
Source:
SQLServerCentral.com
|
Category:
t-sql
Rating:
|
Discuss
|
Briefcase
|
1,387 reads
A Cheap Fix?
Does it make sense to set up another instance of SQL Server just for a power user? Is it a good use of resources? Steve Jones comments today on this DBA tool for enhancing performance.
Read more...
By
Steve Jones
2010/03/04
|
Source:
SQLServerCentral.com
|
Category:
editorial
Rating:
(not yet rated)
|
Discuss
|
Briefcase
|
83 reads
Time Bomb Coding
Do your system contain a time bomb in the code? David Poole looks at some potential situations where you might be experiencing performance issues and delves into why.
Read more...
By
David Poole
2010/02/10
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
14,611 reads
Get In a Line
Steve Jones talks a little about disk alignment for your SQL Server instances. This is something that you might to check on your systems and see if you can improve performance.
Read more...
By
Steve Jones
2010/02/01
|
Source:
SQLServerCentral.com
|
Category:
editorial
Rating:
(not yet rated)
|
Discuss
|
Briefcase
|
88 reads
Top 10 steps to optimize data access in SQL Server. Part IV (Diagnose database performance problems)
It’s time for us to learn how to diagnose different performance and related problems in SQL Server database. Take a look at the following articles to learn the step by step process that we’ve already carried out so far.
Read more...
By
Additional Articles
2010/01/12
|
Source:
CodeProject.com
|
Category:
performance tuning
Rating:
Rate this
|
Briefcase
|
4,678 reads
Top 10 steps to optimize data access in SQL Server. Part III (Apply advanced indexing and denormalization)
Even after you have applied proper indexing along with re-factoring your TSQLs with best practices, some data access routines might still be there, which would be expensive, in terms of their execution time. There must have been some smart ways to deal with these. Yes there are. SQL server offers you some rich indexing techniques that you might have not used earlier. These could surprise you with the performance benefits they possibly offer. Let us start implementing those advanced indexing techniques:
Read more...
By
Additional Articles
2010/01/08
|
Source:
CodeProject.com
|
Category:
performance tuning
Rating:
(not yet rated)
Rate this
|
Briefcase
|
4,555 reads
Top 10 steps to optimize data access in SQL Server. Part II (Re-factor TSQLs and apply best practices)
In this article, we are going to focus on writing or refactoring the data access codes using the best practices. But, before we start playing the game, we need to prepare the ground first. So let’s do the groundwork at this very next step:
Read more...
By
Additional Articles
2010/01/04
|
Source:
CodeProject.com
|
Category:
performance tuning
Rating:
Rate this
|
Briefcase
|
6,292 reads
Top 10 steps to optimize data access in SQL Server. Part I (Use Indexing)
’ll focus on the issues that you need to follow to make sure that you have done everything that you could do to optimize the data access codes you have written or you are going to write in future. The Database Administrators (DBA) also has great roles to play in optimizing and tuning the database performance. But, optimization scopes that fall into a DBA’s area are out of scope for these articles.
Read more...
By
Additional Articles
2009/12/29
|
Source:
CodeProject.com
|
Category:
indexing
Rating:
Rate this
|
Briefcase
|
4,878 reads
Comparing cursor vs. WHILE loop performance in SQL Server 2008
There are situations in which you need to individually handle each row in a result set. SQL Server 2008 provides a minimal set of tools — cursors and WHILE loops — to accomplish this task. I'll take a closer look at each option and explain why it's difficult to pinpoint which is better in terms of performance.
Read more...
By
Additional Articles
2009/12/11
|
Source:
Builder.com
|
Category:
t-sql
Rating:
(not yet rated)
Rate this
|
Briefcase
|
4,270 reads
Using Server Side Traces for Dynamic Performance Evaluation
This article describes a method of gathering and analyzing performance data using SQL Trace.
Read more...
By
Jacek Osuchowski
2009/12/01
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
4,836 reads
An Un-indexed Foreign Key Gotcha
Indexing is important for improving performance, but do you know that a lack of indexes might actually cause things to stop working? Alok Dwivedi brings us a very interesting scenario where the lack of an index causes a problem with concurrency.
Read more...
By
Alok Dwivedi
2009/11/09
|
Source:
SQLServerCentral.com
|
Category:
t-sql
Rating:
|
Discuss
|
Briefcase
|
9,785 reads
The Rich Rewards of Tuning SQL
The next time you are tempted to hammer a performance problem with hardware, why not instead invest that time in hammering and refining your SQL queries? There are rich rewards to be had.
Read more...
By
Tony Davis
2009/11/02
|
Source:
SQLServerCentral.com
|
Category:
editorial
Rating:
|
Discuss
|
Briefcase
|
167 reads
Poor Man's Enterprise Feature - Lock Pages in Memory
Enable Lock Pages in memory on Standard edition was ONLY an Enterprise feature until now. Read this article to see how you enable this setting in SQL Server.
Read more...
By
Amit Singh
2009/10/15
|
Source:
SQLServerCentral.com
|
Category:
lock pages in memory
Rating:
|
Discuss
|
Briefcase
|
7,112 reads
SQL WHERE Clause Optimization
SQL WHERE clause optimization is important to get maximum performance from a query. If an index exists on a column you obviously want the query to use it...
Read more...
By
Additional Articles
2009/09/25
|
Source:
SQL-Server-Pro
|
Category:
t-sql
Rating:
Rate this
|
Briefcase
|
8,534 reads
Tuning the Performance of Change Data Capture in SQL Server 2008
Change data capture is a new feature in SQL Server 2008 that provides an easy way to capture changes to data in a set of database tables so these changes can be transferred to a second system like a data warehouse. This document provides guidance on how to configure change data capture parameters to maximize data capture performance while minimizing the performance impact on the production workload. The scope of this document is limited to the capture of change data and the cleanup process. Querying the changed data is out of scope for this white paper.
Read more...
By
Additional Articles
2009/09/15
|
Source:
Microsoft MSDN
|
Category:
change data capture (cdc)
Rating:
Rate this
|
Briefcase
|
1,699 reads
Understanding Scans And Seeks
Whether a query uses Scan or Seek can have a big impact on the cost of excuting that query. This article examines when each is used and which is optimal.
Read more...
By
Additional Articles
2009/09/10
|
Source:
SQL Server Performance
|
Category:
index utilization
Rating:
Rate this
|
Briefcase
|
5,334 reads
Using Star Join and Few-Outer-Row Optimizations to Improve Data Warehousing Queries
In this white paper we discuss two of the new features in SQL Server 2008, Star Join and Few-Outer-Row optimizations. We test the performance of SQL Server 2008 on a set of complex data warehouse queries designed to highlight the effect of these two features and observed a significant performance gain over SQL Server 2005 (without these two features).
Read more...
By
Additional Articles
2009/09/10
|
Source:
Microsoft MSDN
|
Category:
sql server 2008
Rating:
(not yet rated)
Rate this
|
Briefcase
|
3,363 reads
Items 1 to 20 of 311
Next 20 >>
Copyright © 2002-2010 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use