Quantcast
Channel: Answers for "what is actually causing the performance of SQL SERVER"
Browsing all 12 articles
Browse latest View live

Answer by ThomasRushton

A few potential causes: Insufficient memory, non-performant storage, other stuff running on the server other than just SQL Server, dodgy network connection, lack of CPU power, lots of work going on on...

View Article



Answer by anthony.green

Couple of links Gail always posts on finding poor performing SQL Poor Performing SQL Part 1 - http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/...

View Article

Answer by Grant Fritchey

The number one problem is generally the code, the queries. You can have functions on the columns in WHERE clauses and JOINs. You might not be using the entire key on indexes in the columns you select....

View Article

Answer by denisrichi

Follow the bellow article [http://stackoverflow.com/questions/1252795/what-can-cause-bad-sql-server-performance][1] [http://www.brentozar.com/archive/2012/06/sql-server-poor-performance-checklist/][2]...

View Article

Answer by Fatherjack

The database schema may be poorly designed. You might just have a lot of data.

View Article


Answer by indexer

Main causes of poor performance 1. Inefficient query design 2. Auto-growing files 3. Too many indexes to be maintained on a table 4. Too few indexes on a table 5. Not properly choosing your clustered...

View Article

Answer by ThomasRushton

A few potential causes: Insufficient memory, non-performant storage, other stuff running on the server other than just SQL Server, dodgy network connection, lack of CPU power, lots of work going on on...

View Article

Answer by anthony.green

Couple of links Gail always posts on finding poor performing SQL Poor Performing SQL Part 1 - http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/...

View Article


Answer by Grant Fritchey

The number one problem is generally the code, the queries. You can have functions on the columns in WHERE clauses and JOINs. You might not be using the entire key on indexes in the columns you select....

View Article


Answer by denisrichi

Follow the bellow article [http://stackoverflow.com/questions/1252795/what-can-cause-bad-sql-server-performance][1] [http://www.brentozar.com/archive/2012/06/sql-server-poor-performance-checklist/][2]...

View Article

Answer by Fatherjack

The database schema may be poorly designed. You might just have a lot of data.

View Article

Answer by indexer

Main causes of poor performance 1. Inefficient query design 2. Auto-growing files 3. Too many indexes to be maintained on a table 4. Too few indexes on a table 5. Not properly choosing your clustered...

View Article
Browsing all 12 articles
Browse latest View live


Latest Images