﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2005 / SQL Server 2005 Performance Tuning  / Learning More About CPU/Physical IO / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Thu, 20 Jun 2013 05:41:03 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Learning More About CPU/Physical IO</title><link>http://www.sqlservercentral.com/Forums/Topic502969-360-1.aspx</link><description>Since applications are so specific and individual, there really isn't a way to say what "recommended" IO levels are.  The best measure is: Is the cost of running the program less than the benefit?  That's going to be highly subjective.</description><pubDate>Tue, 20 May 2008 06:55:24 GMT</pubDate><dc:creator>GSquared</dc:creator></item><item><title>RE: Learning More About CPU/Physical IO</title><link>http://www.sqlservercentral.com/Forums/Topic502969-360-1.aspx</link><description>Thanks... However I already used the Activity Monitor in SQL Management Studi 2005.My problem here is that how would I know if a certain application is consuming more CPU, Phsyical I/O, etc.. in connecting SQL basing with Acitivity Monitor. Are there any basis or recommended values?</description><pubDate>Mon, 19 May 2008 13:35:08 GMT</pubDate><dc:creator>jan michael woo cerna-336610</dc:creator></item><item><title>RE: Learning More About CPU/Physical IO</title><link>http://www.sqlservercentral.com/Forums/Topic502969-360-1.aspx</link><description>I'd say the first thing to do is try running a few queries with "set statistics io on" and "set statistics time on".  Look at the Messages tab in Management Studio when you do that.Here are a couple of examples:[code]set statistics time onset statistics io onselect getdate()[/code][code]set statistics time onset statistics io ondeclare @Date datetime;with CTE (Number) as  (select row_number() over (order by t1.object_id)  from sys.all_objects t1  cross join sys.all_objects t2)select @Date = dateadd(minute, number, '1/1/1900')from CTE[/code]You'll see messages about how much CPU time was used, how much total time was used, how many scans and reads were done any tables involved, etc.Check the statistics on some of the more common queries in the databases you administer (assuming you have some).Once you've seen those numbers, look up any parts that you don't understand specifically.  Or ask about them here.</description><pubDate>Mon, 19 May 2008 11:34:22 GMT</pubDate><dc:creator>GSquared</dc:creator></item><item><title>RE: Learning More About CPU/Physical IO</title><link>http://www.sqlservercentral.com/Forums/Topic502969-360-1.aspx</link><description>You need to pick up a book on SQL server performance tuning.Also there are several articles here on sql server central, also check out blogs etc.Books online is a great resource as well.</description><pubDate>Mon, 19 May 2008 10:58:17 GMT</pubDate><dc:creator>sarath-226611</dc:creator></item><item><title>Learning More About CPU/Physical IO</title><link>http://www.sqlservercentral.com/Forums/Topic502969-360-1.aspx</link><description>Hi;I'm rephrasing the question below because I also stumped.Where can I find white papers or technical documents regarding SQL Server 2005 Activity Monitor CPU and Physical IO.I would like to learn more about who and how a client may consume CPU utilization running queries etc. and its impact.src: [url]http://msdn.microsoft.com/en-us/library/ms178520.aspx[/url]Thanks,Jan</description><pubDate>Mon, 19 May 2008 10:50:54 GMT</pubDate><dc:creator>jan michael woo cerna-336610</dc:creator></item></channel></rss>