Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 SQL Server Administration (2008)
 sql admin

Author  Topic 

pramod21
Yak Posting Veteran

64 Posts

Posted - 2012-11-07 : 23:44:01
HI,

i'm using sql server 2008 r2, there is an engine which hits sql server in every 10 sec due to which CPU consumption is very high. is there any way through which cpu consumption become less?

Thanks

jackv
Master Smack Fu Yak Hacker

2179 Posts

Posted - 2012-11-08 : 08:57:14
One method is to capture the sql statements , and optimise the queries.
Check to see if high levels of recompilations are occuring

Jack Vamvas
--------------------
http://www.sqlserver-dba.com
Go to Top of Page

srimami
Posting Yak Master

160 Posts

Posted - 2012-11-20 : 09:27:57
Agree with jackv answer. The query is not optimized and so is the CPU consumption high. Use execution plan and optimize the query to resolve this problem.
Go to Top of Page

srimami
Posting Yak Master

160 Posts

Posted - 2012-11-20 : 10:18:09
In addition to the above said answer, the causes for High CPU usage are
insufficient memory,
poorly written queries,
inadequate indexing,
inappropriate configuration option settings
Go to Top of Page
   

- Advertisement -