<?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; UDF &#8211; Function to Convert Text String to Title Case &#8211; Proper Case &#8211; Part 2</title>
	<atom:link href="http://blog.sqlauthority.com/2008/08/22/sql-server-udf-function-to-convert-text-string-to-title-case-proper-case-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/08/22/sql-server-udf-function-to-convert-text-string-to-title-case-proper-case-part-2/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Mon, 13 Feb 2012 15:11:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/08/22/sql-server-udf-function-to-convert-text-string-to-title-case-proper-case-part-2/#comment-61753</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Thu, 25 Feb 2010 10:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=866#comment-61753</guid>
		<description><![CDATA[DECLARE @string VARCHAR(8000)  
 
SELECT @string = &#039;this,is,test&#039;
 
SELECT 
    string = SUBSTRING(@string, n, CHARINDEX(&#039;,&#039;, @string + &#039;,&#039;, n ) - n) 
FROM 
    ( 
        SELECT number as n FROM master..spt_values
		where type=&#039;p&#039; 
    ) as n
WHERE 
    SUBSTRING( &#039;,&#039; + @string, n, 1 ) = &#039;,&#039;]]></description>
		<content:encoded><![CDATA[<p>DECLARE @string VARCHAR(8000)  </p>
<p>SELECT @string = &#8216;this,is,test&#8217;</p>
<p>SELECT<br />
    string = SUBSTRING(@string, n, CHARINDEX(&#8216;,&#8217;, @string + &#8216;,&#8217;, n ) &#8211; n)<br />
FROM<br />
    (<br />
        SELECT number as n FROM master..spt_values<br />
		where type=&#8217;p&#8217;<br />
    ) as n<br />
WHERE<br />
    SUBSTRING( &#8216;,&#8217; + @string, n, 1 ) = &#8216;,&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinoth N</title>
		<link>http://blog.sqlauthority.com/2008/08/22/sql-server-udf-function-to-convert-text-string-to-title-case-proper-case-part-2/#comment-56352</link>
		<dc:creator><![CDATA[Vinoth N]]></dc:creator>
		<pubDate>Fri, 02 Oct 2009 17:26:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=866#comment-56352</guid>
		<description><![CDATA[hi,
 If there any way to spilt the sentence using any delimeter and insert into table.

Regards
Vinoth N]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
 If there any way to spilt the sentence using any delimeter and insert into table.</p>
<p>Regards<br />
Vinoth N</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: el</title>
		<link>http://blog.sqlauthority.com/2008/08/22/sql-server-udf-function-to-convert-text-string-to-title-case-proper-case-part-2/#comment-44516</link>
		<dc:creator><![CDATA[el]]></dc:creator>
		<pubDate>Wed, 03 Dec 2008 14:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=866#comment-44516</guid>
		<description><![CDATA[Hai, 
If I am not wrong, your codes do not change the value, for you only choose &quot;SELECT&quot; key. How if do I want to change the data permanently (Updated)?

For example, I write these codes to change all strings in a column to upper case :
&quot;update Table_A set Field_A=UPPER(Field_A)....&quot;

My question is how to change the string to Proper or title one.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Hai,<br />
If I am not wrong, your codes do not change the value, for you only choose &#8220;SELECT&#8221; key. How if do I want to change the data permanently (Updated)?</p>
<p>For example, I write these codes to change all strings in a column to upper case :<br />
&#8220;update Table_A set Field_A=UPPER(Field_A)&#8230;.&#8221;</p>
<p>My question is how to change the string to Proper or title one.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sachin</title>
		<link>http://blog.sqlauthority.com/2008/08/22/sql-server-udf-function-to-convert-text-string-to-title-case-proper-case-part-2/#comment-41906</link>
		<dc:creator><![CDATA[Sachin]]></dc:creator>
		<pubDate>Fri, 22 Aug 2008 08:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=866#comment-41906</guid>
		<description><![CDATA[Sir,

     This is not regarding for this post.but i want to ask a question.

what happened  when i create a column with int datatype and autoincrement. and finally limit of int datatype has been finished now insertion of next row there will be error or something ?
 
Thanks
Sachin Kulshreshtha]]></description>
		<content:encoded><![CDATA[<p>Sir,</p>
<p>     This is not regarding for this post.but i want to ask a question.</p>
<p>what happened  when i create a column with int datatype and autoincrement. and finally limit of int datatype has been finished now insertion of next row there will be error or something ?</p>
<p>Thanks<br />
Sachin Kulshreshtha</p>
]]></content:encoded>
	</item>
</channel>
</rss>

