SQL Server Recovery Manager

Tips to Improve SQL Server Performance for Slow Running

Stephen West ~ Modified: March 22nd, 2023 ~ SQL ~ 5 Minutes Reading

SQL Server is Running Slow

SQL Server Running Slow?

“While fetching records in SQL Server 2012 database, I am noticing that my database began running too slow for the past two weeks, even some queries and processes ended with a timeout error. Speed is well for a moment and then SQL server slow running issue occurs Therefore I want to improve SQL server performance. CPU and disk seem normal. I am unable to check if there is a blocked process as the activity monitor returns a timeout error. Why is this happening? Why my SQL Server Database is running slow?”

This is one of the common performance issues in SQL Server, a user can face. Similarly, there are a number of issues making the performance of SQL Server slow.

Table of Contents

Know What We Need to Do

Users want quick response to retrieval of data from the database and developers to make their best efforts to provide the data in the shortest time. There is no such way of defining, what is the good or bad performance of a query.

Let’s benefit SQL query by optimizing the SQL Server and making its performance fast. I will share some quick tips to improve the performance slow running queries in SQL Server. But first, let us understand the possible reasons why this performance is dropping.

Why SQL Server Running Slow? – Know The Reason

There are a number of reasons why SQL Server running slow. Finding the cause of the SQL server slow performance is vital. Through this, you will be able to solve the issue. Some of the biggest performance bottlenecks are as below that will help users to improve SQL server performance as well:

Missing Indexes – Poor Disk performance & increased number of deadlocks signify that you are having missing indexes. Below is the solution mentioned to learn how to fix slow running queries in SQL server smartly.

Resolution:

You can easily determine missing indexes by DMVs, sys.dm_db_missing_index_details, and sys.dm_db_missing_index_columns. Simultaneously, you can identify the indexes that need to be created to improve slow-running SQL Server performance.

Poor Designing of Indexes – Poorly designed database tables result in slow-running queries that result in a high execution plan.

Resolution:

You can easily identify the problem by querying the procedure cache. This is because the query execution plan remains in the cache as long as there is storage availables to store them.

Poor Designed Database Schema – This is one of the biggest killer of database schema. This can be seen while queries are running, when there is increase in number of input-output request occur.

Resolution:

You can simply look for this evidence by using SQL Profiler. The profiler captures those queries who has the highest I/O load.

Less Storage in I/O Subsystem – To determine whether there is problem in storage performance or not, you can check ERRORLOG file. You will get slow I/O message in your Errorlog file, if the issue is related to storage I/O subsytem

Resolution:

You can look for I/O problem by running sys.dm_os_wait_stats DMV with code.

Slow Network, Small Buffer Pool, Wrong technology used are some of the reasons that degrades SQL Server performance. Resolving these problems might seem difficult but if you have the right tools, you can easily fix these performance issues.

Quick Tips to Improve SQL Server Performance

We have discussed various causes of slow-running SQL Server. Implementing the following points will help you to improve SQL query performance in SQL Server:

  • Avoid writing a query with multiple joins that include outer joins, cross join, and other complex queries.
  • Try to Avoid cursors. It makes the performance slow. If there is need to use cursors, then avoid dynamic cursors.
  • Avoid * in SELECT statement. Specify the name of the column which you require.
  • Delete unused indexes to get rid of SQL server slow performance.
  • Use Joins instead of subqueries.
  • Identifying the error log file location in SQL server can also be helpful for users.
  • If possible, use UNION ALL instead of UNION.
  • Avoid using Multi statement Table valued functions. They are more costly than inline TVFs.
  • Positioning of index play an important role to improve query performance in SQL Server. Selective columns should be placed leftmost turns out as a best practice.
  • Avoid NULL in fixed length field. In case of requirement, use variable length field, it takes less space for NULL.
  • Try to keep transaction small as sometimes the processing result in deadlocks.
  • Use TRY CATCH to avoid deadlocks.

Also Read: SQL Server Error 4014 Solution

Conclusion

There are number of users/ DBAs who are annoyed by slow performance of SQL Server. The blog discusses the possible reasons why such issues occur? It also covers some quick tips to improve SQL server performance.

As per the above mentioned data, we can finally say that SQL server slow running issues are common & can be resolved with minor efforts & right technique. Users just need to be technically aware of the SQL terms & queries. It’s not a difficult task for users to learn how to fix slow running queries in SQL server with the above-mentioned tips.