<?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 for Ranjith Kumar S</title>
	<atom:link href="http://ranjithk.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ranjithk.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 05:48:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Script to drop all objects of a Schema in SQL Server by J</title>
		<link>http://ranjithk.com/2010/01/31/script-to-drop-all-objects-of-a-schema/#comment-296</link>
		<dc:creator>J</dc:creator>
		<pubDate>Mon, 30 Jan 2012 05:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/31/script-to-drop-all-objects-in-a-schema/#comment-296</guid>
		<description>Couple questions...
1) M$ suggests migrating to using the INFORMATION_SCHEMA views in lieu of sys.ojects ??

2) Instead of ap/pre pending []&#039;s..  Much better to use QuoteName ?</description>
		<content:encoded><![CDATA[<p>Couple questions&#8230;<br />
1) M$ suggests migrating to using the INFORMATION_SCHEMA views in lieu of sys.ojects ??</p>
<p>2) Instead of ap/pre pending []&#8216;s..  Much better to use QuoteName ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by ranji842</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-294</link>
		<dc:creator>ranji842</dc:creator>
		<pubDate>Thu, 26 Jan 2012 17:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-294</guid>
		<description>Thanks Per! You are right on the typo, And to remove confusion I have also added the ANSI_NULLS OFF example</description>
		<content:encoded><![CDATA[<p>Thanks Per! You are right on the typo, And to remove confusion I have also added the ANSI_NULLS OFF example</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by Per Löfgren</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-293</link>
		<dc:creator>Per Löfgren</dc:creator>
		<pubDate>Thu, 26 Jan 2012 09:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-293</guid>
		<description>I don&#039;t think it&#039;s a typo. He shows how to properly compare against NULL when the ANSI_NULLS is ON.
(look in the IF expression, and the result output).

He might have added a third case showing ansi off like:

SET ANSI_NULLS OFF
IF NULL = NULL
PRINT ‘same’
ELSE
PRINT ‘different’
–result: same</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think it&#8217;s a typo. He shows how to properly compare against NULL when the ANSI_NULLS is ON.<br />
(look in the IF expression, and the result output).</p>
<p>He might have added a third case showing ansi off like:</p>
<p>SET ANSI_NULLS OFF<br />
IF NULL = NULL<br />
PRINT ‘same’<br />
ELSE<br />
PRINT ‘different’<br />
–result: same</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by ranji842</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-292</link>
		<dc:creator>ranji842</dc:creator>
		<pubDate>Thu, 26 Jan 2012 08:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-292</guid>
		<description>Thanks Bob, I have corrected the typo</description>
		<content:encoded><![CDATA[<p>Thanks Bob, I have corrected the typo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by Bob Kolman</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-291</link>
		<dc:creator>Bob Kolman</dc:creator>
		<pubDate>Mon, 23 Jan 2012 22:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-291</guid>
		<description>Thanks for the great tutorial.  I believe you have a cut/paste
typo in your example for ANSI_NULLS, whereby the 2nd case should SET ANSI_NULLS OFF.

SET ANSI_NULLS ON
IF NULL = NULL
 PRINT &#039;same&#039;
ELSE
 PRINT &#039;different&#039;
--result:  different

SET ANSI_NULLS ON   &lt;&lt;-- TYPO - should be OFF
IF NULL IS NULL
 PRINT &#039;same&#039;
ELSE
 PRINT &#039;different&#039;
-- result: same 

Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks for the great tutorial.  I believe you have a cut/paste<br />
typo in your example for ANSI_NULLS, whereby the 2nd case should SET ANSI_NULLS OFF.</p>
<p>SET ANSI_NULLS ON<br />
IF NULL = NULL<br />
 PRINT &#8216;same&#8217;<br />
ELSE<br />
 PRINT &#8216;different&#8217;<br />
&#8211;result:  different</p>
<p>SET ANSI_NULLS ON   &lt;&lt;&#8211; TYPO &#8211; should be OFF<br />
IF NULL IS NULL<br />
 PRINT &#039;same&#039;<br />
ELSE<br />
 PRINT &#039;different&#039;<br />
&#8211; result: same </p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by ranji842</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-290</link>
		<dc:creator>ranji842</dc:creator>
		<pubDate>Mon, 23 Jan 2012 17:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-290</guid>
		<description>Thanks Mandana. This is the best comment I have got so far and you definitely made me think about writing more. I will try to find sometime for this</description>
		<content:encoded><![CDATA[<p>Thanks Mandana. This is the best comment I have got so far and you definitely made me think about writing more. I will try to find sometime for this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by fatemeh</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-289</link>
		<dc:creator>fatemeh</dc:creator>
		<pubDate>Mon, 23 Jan 2012 07:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-289</guid>
		<description>thanks
:)</description>
		<content:encoded><![CDATA[<p>thanks<br />
 <img src='http://ranjithk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding SET QUOTED_IDENTIFIER ON/OFF and SET ANSI_NULLS ON/OFF by Mandana</title>
		<link>http://ranjithk.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-288</link>
		<dc:creator>Mandana</dc:creator>
		<pubDate>Fri, 20 Jan 2012 19:55:31 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/10/understanding-set-quoted_identifier-onoff/#comment-288</guid>
		<description>Great explanation! Thank you, Ranjith for sharing! I read this subject in several &quot;thick books&quot; and had a hard time to make a clear understanding. I think you should write books in technical subjects, if you haven&#039;t already. If you have please let us know the name.</description>
		<content:encoded><![CDATA[<p>Great explanation! Thank you, Ranjith for sharing! I read this subject in several &#8220;thick books&#8221; and had a hard time to make a clear understanding. I think you should write books in technical subjects, if you haven&#8217;t already. If you have please let us know the name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Server 2008 new datetime types, functions and the conversions between them by sunneil</title>
		<link>http://ranjithk.com/2010/04/27/sql-server-2008-new-datetime-types-functions-and-the-conversions-between-them/#comment-286</link>
		<dc:creator>sunneil</dc:creator>
		<pubDate>Tue, 17 Jan 2012 06:33:01 +0000</pubDate>
		<guid isPermaLink="false">https://ranjithk.wordpress.com/2010/04/27/sql-server-2008-new-datetime-types-functions-and-the-conversions-between-them/#comment-286</guid>
		<description>well explanation Ranjith.I expect something more on it.</description>
		<content:encoded><![CDATA[<p>well explanation Ranjith.I expect something more on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Script to drop all objects of a Schema in SQL Server by Sarah</title>
		<link>http://ranjithk.com/2010/01/31/script-to-drop-all-objects-of-a-schema/#comment-285</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Mon, 16 Jan 2012 15:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://ranjithk.wordpress.com/2010/01/31/script-to-drop-all-objects-in-a-schema/#comment-285</guid>
		<description>Really useful. Thank you Ranjith!</description>
		<content:encoded><![CDATA[<p>Really useful. Thank you Ranjith!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

