<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Demo Script &#8211; Keeping CPU Busy</title>
	<atom:link href="http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: prarajesh</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-474347</link>
		<dc:creator><![CDATA[prarajesh]]></dc:creator>
		<pubDate>Mon, 13 May 2013 11:25:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-474347</guid>
		<description><![CDATA[Interesting scripts. But I want to know is there any script to know the CPU is idle since 10 minutes.Anyone please.]]></description>
		<content:encoded><![CDATA[<p>Interesting scripts. But I want to know is there any script to know the CPU is idle since 10 minutes.Anyone please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #019 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-434138</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #019 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 09 Mar 2013 01:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-434138</guid>
		<description><![CDATA[[...] Demo Script – Keeping CPU Busy In year 2011 I wrote a blog post where I explained how I can keep the CPU busy and can endanger your job. In year 2013 right after 2 years of writing original script I updated my script and wrote a new blog post where I explained how to keep our CPU busy efficiently. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Demo Script – Keeping CPU Busy In year 2011 I wrote a blog post where I explained how I can keep the CPU busy and can endanger your job. In year 2013 right after 2 years of writing original script I updated my script and wrote a new blog post where I explained how to keep our CPU busy efficiently. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; T-SQL Script to Keep CPU Busy &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-425451</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; T-SQL Script to Keep CPU Busy &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Fri, 22 Feb 2013 01:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-425451</guid>
		<description><![CDATA[[...] I quickly searched for this query, I end up on my old blog post over here Demo Script – Keeping CPU Busy. However, my earlier script had a small problem &#8211; along with the CPU it was also increasing [...]]]></description>
		<content:encoded><![CDATA[<p>[...] I quickly searched for this query, I end up on my old blog post over here Demo Script – Keeping CPU Busy. However, my earlier script had a small problem &#8211; along with the CPU it was also increasing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramdas</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-121729</link>
		<dc:creator><![CDATA[Ramdas]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 16:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-121729</guid>
		<description><![CDATA[Interesting scripts, I guess Looping operations in T-SQL would increase CPU Activity.]]></description>
		<content:encoded><![CDATA[<p>Interesting scripts, I guess Looping operations in T-SQL would increase CPU Activity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geri Reshef</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-121711</link>
		<dc:creator><![CDATA[Geri Reshef]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 13:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-121711</guid>
		<description><![CDATA[My contribution:

Declare	@T DateTime,
		@F Bigint;
Set		@T=GetDate();
While	DATEADD(Second,180,@T)&gt;GETDATE()
		Set	@F=POWER(2,30);

I reached 50% in SQL Server Activity Monitor 
And 100% in Windows Task Manager.]]></description>
		<content:encoded><![CDATA[<p>My contribution:</p>
<p>Declare	@T DateTime,<br />
		@F Bigint;<br />
Set		@T=GetDate();<br />
While	DATEADD(Second,180,@T)&gt;GETDATE()<br />
		Set	@F=POWER(2,30);</p>
<p>I reached 50% in SQL Server Activity Monitor<br />
And 100% in Windows Task Manager.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aasim abdullah</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-121677</link>
		<dc:creator><![CDATA[aasim abdullah]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 09:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-121677</guid>
		<description><![CDATA[Yeah why not

ALTER INDEX [PK_SalesOrderDetail_SalesOrderID_SalesOrderDetailID]
ON [Sales].[SalesOrderDetail] REBUILD
GO 1000]]></description>
		<content:encoded><![CDATA[<p>Yeah why not</p>
<p>ALTER INDEX [PK_SalesOrderDetail_SalesOrderID_SalesOrderDetailID]<br />
ON [Sales].[SalesOrderDetail] REBUILD<br />
GO 1000</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aasim abdullah</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-121676</link>
		<dc:creator><![CDATA[aasim abdullah]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 09:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-121676</guid>
		<description><![CDATA[EXEC sp_msForEachDb 
@command1=&#039;IF &#039;&#039;#&#039;&#039; NOT IN (&#039;&#039;master&#039;&#039;, &#039;&#039;model&#039;&#039;, &#039;&#039;msdb&#039;&#039;, &#039;&#039;pubs&#039;&#039;, &#039;&#039;tempdb&#039;&#039;) BEGIN PRINT &#039;&#039;#&#039;&#039;; 
EXEC #.dbo.sp_msForEachTable &#039;&#039;UPDATE STATISTICS ? WITH FULLSCAN&#039;&#039;, @command2=&#039;&#039;PRINT CONVERT(VARCHAR, GETDATE(), 9) + &#039;&#039;&#039;&#039; - ? Stats Updated&#039;&#039;&#039;&#039;&#039;&#039; END&#039;,
@replaceChar = &#039;#&#039;]]></description>
		<content:encoded><![CDATA[<p>EXEC sp_msForEachDb<br />
@command1=&#8217;IF &#8221;#&#8221; NOT IN (&#8221;master&#8221;, &#8221;model&#8221;, &#8221;msdb&#8221;, &#8221;pubs&#8221;, &#8221;tempdb&#8221;) BEGIN PRINT &#8221;#&#8221;;<br />
EXEC #.dbo.sp_msForEachTable &#8221;UPDATE STATISTICS ? WITH FULLSCAN&#8221;, @command2=&#8221;PRINT CONVERT(VARCHAR, GETDATE(), 9) + &#8221;&#8221; &#8211; ? Stats Updated&#8221;&#8221;&#8221; END&#8217;,<br />
@replaceChar = &#8216;#&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Dustin</title>
		<link>http://blog.sqlauthority.com/2011/03/03/sql-server-demo-script-keeping-cpu-busy/#comment-121620</link>
		<dc:creator><![CDATA[Dave Dustin]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 05:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=12107#comment-121620</guid>
		<description><![CDATA[That script you have above will generate CPU and IO activity.  

If you only want to max out your CPU for an extended period of time, run the T-SQL mandlebrot script ( http://thedailywtf.com/Articles/Stupid-Coding-Tricks-The-TSQL-Madlebrot.aspx ) with a GO 100 at the end.]]></description>
		<content:encoded><![CDATA[<p>That script you have above will generate CPU and IO activity.  </p>
<p>If you only want to max out your CPU for an extended period of time, run the T-SQL mandlebrot script ( <a href="http://thedailywtf.com/Articles/Stupid-Coding-Tricks-The-TSQL-Madlebrot.aspx" rel="nofollow">http://thedailywtf.com/Articles/Stupid-Coding-Tricks-The-TSQL-Madlebrot.aspx</a> ) with a GO 100 at the end.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
