<?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: SQL isZero() Solution For Divide By Zero Error</title>
	<atom:link href="http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 06 Feb 2012 01:58:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Elwanda Orsi</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-35</link>
		<dc:creator>Elwanda Orsi</dc:creator>
		<pubDate>Thu, 30 Dec 2010 12:13:27 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-35</guid>
		<description>Funny I was discussing having a buddy about this just the other day, we need to share the very same views. I hope it is ok I added your web site to a number of of my bookmark lists?</description>
		<content:encoded><![CDATA[<p>Funny I was discussing having a buddy about this just the other day, we need to share the very same views. I hope it is ok I added your web site to a number of of my bookmark lists?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phani</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-34</link>
		<dc:creator>Phani</dc:creator>
		<pubDate>Tue, 24 Nov 2009 12:08:41 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-34</guid>
		<description>Thanks a lot....simplified my problems .....on the spot.....Just Excellent :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot&#8230;.simplified my problems &#8230;..on the spot&#8230;..Just Excellent <img src='http://www.richardsantos.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juraj</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-32</link>
		<dc:creator>Juraj</dc:creator>
		<pubDate>Tue, 27 Oct 2009 15:16:01 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-32</guid>
		<description>Thanks, this works!</description>
		<content:encoded><![CDATA[<p>Thanks, this works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-28</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 22 Sep 2009 19:20:01 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-28</guid>
		<description>@Dave
ISNULL(ROUND(x/(NULLIF(y,0)),0),0)

I'm pretty sure there was an error with the posted code unless they are using something different than sql server where it would work.  But with SQL Server the code shown does not work.  All three of the functions require more than 1 parameter, so the above code should work fine.</description>
		<content:encoded><![CDATA[<p>@Dave<br />
ISNULL(ROUND(x/(NULLIF(y,0)),0),0)</p>
<p>I&#8217;m pretty sure there was an error with the posted code unless they are using something different than sql server where it would work.  But with SQL Server the code shown does not work.  All three of the functions require more than 1 parameter, so the above code should work fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barry bevel</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-29</link>
		<dc:creator>barry bevel</dc:creator>
		<pubDate>Fri, 31 Jul 2009 18:40:45 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-29</guid>
		<description>Would this be the same thing? (db2)

SELECT X,Y, CASE WHEN Y = 0 THEN 0 ELSE ROUND(X / Y) END AS quotient
FROM dataTbl</description>
		<content:encoded><![CDATA[<p>Would this be the same thing? (db2)</p>
<p>SELECT X,Y, CASE WHEN Y = 0 THEN 0 ELSE ROUND(X / Y) END AS quotient<br />
FROM dataTbl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-30</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 23 Jul 2009 22:58:32 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-30</guid>
		<description>You just saved me, BIG TIME!

Mucho gracias!</description>
		<content:encoded><![CDATA[<p>You just saved me, BIG TIME!</p>
<p>Mucho gracias!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-31</link>
		<dc:creator>B</dc:creator>
		<pubDate>Thu, 02 Jul 2009 11:06:25 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-31</guid>
		<description>Superb , Hiperb , Perfect , Wonderful O La La :)) Thanks ...</description>
		<content:encoded><![CDATA[<p>Superb , Hiperb , Perfect , Wonderful O La La :)) Thanks &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rs</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-27</link>
		<dc:creator>rs</dc:creator>
		<pubDate>Thu, 26 Feb 2009 08:56:22 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-27</guid>
		<description>double check the arguments on your ROUND function. ROUND(numeric_expression, length). Length is the precision to which the numeric_expression is to be rounded.</description>
		<content:encoded><![CDATA[<p>double check the arguments on your ROUND function. ROUND(numeric_expression, length). Length is the precision to which the numeric_expression is to be rounded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-26</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 26 Feb 2009 02:54:07 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-26</guid>
		<description>Doh! Why does it work for everyone else, but I get a "ROUND requires 2 arguments" error?</description>
		<content:encoded><![CDATA[<p>Doh! Why does it work for everyone else, but I get a &#8220;ROUND requires 2 arguments&#8221; error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renato</title>
		<link>http://www.richardsantos.net/2006/08/04/sql-iszero-solution-for-divide-by-zero-error/comment-page-1/#comment-25</link>
		<dc:creator>Renato</dc:creator>
		<pubDate>Thu, 05 Feb 2009 19:17:45 +0000</pubDate>
		<guid isPermaLink="false">https://richardsantos.wordpress.com/2006/08/04/sql-iszero/#comment-25</guid>
		<description>keep the good work !!!!</description>
		<content:encoded><![CDATA[<p>keep the good work !!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

