<?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/"
		>
<channel>
	<title>Comments on: Generate random integers using tsql UDFs</title>
	<atom:link href="http://ericfickes.com/2009/09/generate-random-integers-using-tsql-udfs/feed/" rel="self" type="application/rss+xml" />
	<link>http://ericfickes.com/2009/09/generate-random-integers-using-tsql-udfs/</link>
	<description>Design minded Internet Programmer</description>
	<lastBuildDate>Sun, 05 Feb 2012 06:54:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: gist</title>
		<link>http://ericfickes.com/2009/09/generate-random-integers-using-tsql-udfs/comment-page-1/#comment-3542</link>
		<dc:creator>gist</dc:creator>
		<pubDate>Tue, 22 Mar 2011 05:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://ericfickes.com/?p=928#comment-3542</guid>
		<description>I am very much pleased with the contents you have mentioned.I wanted to thank you for this great article. I enjoyed every little bit part of it and I will be waiting for the new updates. </description>
		<content:encoded><![CDATA[<p>I am very much pleased with the contents you have mentioned.I wanted to thank you for this great article. I enjoyed every little bit part of it and I will be waiting for the new updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Fickes</title>
		<link>http://ericfickes.com/2009/09/generate-random-integers-using-tsql-udfs/comment-page-1/#comment-1050</link>
		<dc:creator>Eric Fickes</dc:creator>
		<pubDate>Tue, 13 Apr 2010 06:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://ericfickes.com/?p=928#comment-1050</guid>
		<description>Hey Bjorn,  
 
The variable @max_big is a safety net used during the random INT generation. If you called this function and passed 2147483647 as your @max_in, Line 64 would overflow because you&#039;d be adding 1 to the maximum value of an INT.  </description>
		<content:encoded><![CDATA[<p>Hey Bjorn,  </p>
<p>The variable @max_big is a safety net used during the random INT generation. If you called this function and passed 2147483647 as your @max_in, Line 64 would overflow because you&#039;d be adding 1 to the maximum value of an INT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; The ever illusive Dynamic Pivot</title>
		<link>http://ericfickes.com/2009/09/generate-random-integers-using-tsql-udfs/comment-page-1/#comment-1036</link>
		<dc:creator>&#187; The ever illusive Dynamic Pivot</dc:creator>
		<pubDate>Sat, 10 Apr 2010 15:48:07 +0000</pubDate>
		<guid isPermaLink="false">http://ericfickes.com/?p=928#comment-1036</guid>
		<description>[...] The random function used above was extracted from Eric Fickes&#039; Blog. [...]</description>
		<content:encoded><![CDATA[<p>[...] The random function used above was extracted from Eric Fickes&#39; Blog. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bj&#246;rn</title>
		<link>http://ericfickes.com/2009/09/generate-random-integers-using-tsql-udfs/comment-page-1/#comment-827</link>
		<dc:creator>Bj&#246;rn</dc:creator>
		<pubDate>Sun, 07 Mar 2010 09:29:43 +0000</pubDate>
		<guid isPermaLink="false">http://ericfickes.com/?p=928#comment-827</guid>
		<description>There may be a bug: 
 
SELECT @rand_num = ( (@max_big + 1) - @min ) * @rand + @min;   
 
should be: 
 
SELECT @rand_num = ( (@max + 1) - @min ) * @rand + @min;   
 
 </description>
		<content:encoded><![CDATA[<p>There may be a bug: </p>
<p>SELECT @rand_num = ( (@max_big + 1) &#8211; @min ) * @rand + @min;   </p>
<p>should be: </p>
<p>SELECT @rand_num = ( (@max + 1) &#8211; @min ) * @rand + @min;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

