<?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; Function to Convert List to Table</title>
	<atom:link href="http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:40:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Koteswarrao</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-89567</link>
		<dc:creator><![CDATA[Koteswarrao]]></dc:creator>
		<pubDate>Sun, 26 Sep 2010 17:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-89567</guid>
		<description><![CDATA[Hi,

How to post the queries ?

Thanks
Koteswarrao]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How to post the queries ?</p>
<p>Thanks<br />
Koteswarrao</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-61172</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Mon, 15 Feb 2010 13:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-61172</guid>
		<description><![CDATA[select * from sys.servers]]></description>
		<content:encoded><![CDATA[<p>select * from sys.servers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-61170</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Mon, 15 Feb 2010 13:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-61170</guid>
		<description><![CDATA[Have data in a text file and import them using BULK INSERT command]]></description>
		<content:encoded><![CDATA[<p>Have data in a text file and import them using BULK INSERT command</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-61168</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Mon, 15 Feb 2010 13:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-61168</guid>
		<description><![CDATA[EXEC sp_help &#039;your_table&#039;

or

select create_date from sys.objects where name=&#039;your_table&#039;]]></description>
		<content:encoded><![CDATA[<p>EXEC sp_help &#8216;your_table&#8217;</p>
<p>or</p>
<p>select create_date from sys.objects where name=&#8217;your_table&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-40210</link>
		<dc:creator><![CDATA[Ganesh]]></dc:creator>
		<pubDate>Mon, 14 Jul 2008 12:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-40210</guid>
		<description><![CDATA[Hi ,pinal

I just want to know the query which we can use to list all available servers in mssql 2000/2005.


Regards..
Ganesh]]></description>
		<content:encoded><![CDATA[<p>Hi ,pinal</p>
<p>I just want to know the query which we can use to list all available servers in mssql 2000/2005.</p>
<p>Regards..<br />
Ganesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charanpreet Singh</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-39385</link>
		<dc:creator><![CDATA[Charanpreet Singh]]></dc:creator>
		<pubDate>Fri, 20 Jun 2008 10:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-39385</guid>
		<description><![CDATA[hello anurag kulshrestha,Solution for U 

set nocount on;
declare @values nvarchar(4000);
set @values=&#039;India&#124;Pakistan&#124;Iran&#124;USA&#124;Australia&#124;Greek&#124;German&#124;turkey&#124;New Zealand&#124;China&#124;Brazil&#039;
declare @Del char(1);
set @Del=&#039;&#124;&#039;;
set @values=@values+@Del;
declare @value nvarchar(100);
 WHILE charindex(@Del,@values,0)  0      
 BEGIN     
select @value=rtrim(ltrim(substring(@values,1,charindex(@Del,@values,0)-1))),@values=rtrim  (ltrim(substring(@values,charindex(@Del,@values,0)+1,len(@values)))) 
if not exists(select @value from daybook where Title=@value)      
 begin
  Insert into DayBook(Title) values(@value) 
 end
END]]></description>
		<content:encoded><![CDATA[<p>hello anurag kulshrestha,Solution for U </p>
<p>set nocount on;<br />
declare @values nvarchar(4000);<br />
set @values=&#8217;India|Pakistan|Iran|USA|Australia|Greek|German|turkey|New Zealand|China|Brazil&#8217;<br />
declare @Del char(1);<br />
set @Del=&#8217;|';<br />
set @values=@values+@Del;<br />
declare @value nvarchar(100);<br />
 WHILE charindex(@Del,@values,0)  0<br />
 BEGIN<br />
select @value=rtrim(ltrim(substring(@values,1,charindex(@Del,@values,0)-1))),@values=rtrim  (ltrim(substring(@values,charindex(@Del,@values,0)+1,len(@values))))<br />
if not exists(select @value from daybook where Title=@value)<br />
 begin<br />
  Insert into DayBook(Title) values(@value)<br />
 end<br />
END</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anurag kulshrestha</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-39320</link>
		<dc:creator><![CDATA[anurag kulshrestha]]></dc:creator>
		<pubDate>Wed, 18 Jun 2008 11:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-39320</guid>
		<description><![CDATA[i have some problem , 
  
i want to create a table name country (country list) and want to insert  country name   (500 country name ) 
it is to difficult for me  apply 
 this  &quot;insert into country  (country_name) (&#039; INDIA&#039;)&quot;
       single  name   again an again  
  
so i want to know  how will i insert  large amount of data in single entity as in country _name 

 With Regard 
    Anurag Kulshrestha]]></description>
		<content:encoded><![CDATA[<p>i have some problem , </p>
<p>i want to create a table name country (country list) and want to insert  country name   (500 country name )<br />
it is to difficult for me  apply<br />
 this  &#8220;insert into country  (country_name) (&#8216; INDIA&#8217;)&#8221;<br />
       single  name   again an again  </p>
<p>so i want to know  how will i insert  large amount of data in single entity as in country _name </p>
<p> With Regard<br />
    Anurag Kulshrestha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhanu Sahu</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-35011</link>
		<dc:creator><![CDATA[Dhanu Sahu]]></dc:creator>
		<pubDate>Sat, 12 Apr 2008 08:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-35011</guid>
		<description><![CDATA[I am new sqlserver i tried every query suggest by you but i cant remove my duplicate row likes Date,Day





1	2	12-Apr-2008	9:00 AM	11:00 PM	Saturday	14		4/12/2008 3:17:11 AM		04	Saturday	2008
2	2	12-Apr-2008	7:00 AM	11:00 PM	Saturday	16		4/12/2008 3:19:27 AM		04	Saturday	2008
3	2	11-Apr-2008	9:00 AM	10:00 PM	Friday	13		4/11/2008 3:24:32 AM		04	Friday	2008
7	2	11-Apr-2008	8:00 AM	10:00 PM	Friday	14		4/11/2008 3:28:18 AM		04	Friday	2008
8	2	11-Apr-2008	5:00 AM	10:00 PM	Friday	17		4/11/2008 3:29:20 AM		04	Friday	2008
9	2	11-Apr-2008	10:30AM	11:30PM	FriDay	12	fbggfb	4/12/2008 3:17:11 AM	dfbdfbdfb	04	FriDay	2008]]></description>
		<content:encoded><![CDATA[<p>I am new sqlserver i tried every query suggest by you but i cant remove my duplicate row likes Date,Day</p>
<p>1	2	12-Apr-2008	9:00 AM	11:00 PM	Saturday	14		4/12/2008 3:17:11 AM		04	Saturday	2008<br />
2	2	12-Apr-2008	7:00 AM	11:00 PM	Saturday	16		4/12/2008 3:19:27 AM		04	Saturday	2008<br />
3	2	11-Apr-2008	9:00 AM	10:00 PM	Friday	13		4/11/2008 3:24:32 AM		04	Friday	2008<br />
7	2	11-Apr-2008	8:00 AM	10:00 PM	Friday	14		4/11/2008 3:28:18 AM		04	Friday	2008<br />
8	2	11-Apr-2008	5:00 AM	10:00 PM	Friday	17		4/11/2008 3:29:20 AM		04	Friday	2008<br />
9	2	11-Apr-2008	10:30AM	11:30PM	FriDay	12	fbggfb	4/12/2008 3:17:11 AM	dfbdfbdfb	04	FriDay	2008</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://blog.sqlauthority.com/2007/02/10/sql-server-function-to-convert-list-to-table/#comment-26527</link>
		<dc:creator><![CDATA[Arun]]></dc:creator>
		<pubDate>Mon, 17 Dec 2007 07:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=20#comment-26527</guid>
		<description><![CDATA[whether there is any way to find the Creating Date of the Table in SQL 2005]]></description>
		<content:encoded><![CDATA[<p>whether there is any way to find the Creating Date of the Table in SQL 2005</p>
]]></content:encoded>
	</item>
</channel>
</rss>

