<?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; Find Row Count in Table &#8211; Find Largest Table in Database &#8211; T-SQL</title>
	<atom:link href="http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 04:45:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Hardik</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-219672</link>
		<dc:creator><![CDATA[Hardik]]></dc:creator>
		<pubDate>Sat, 17 Dec 2011 00:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-219672</guid>
		<description><![CDATA[man u are ossom....]]></description>
		<content:encoded><![CDATA[<p>man u are ossom&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Walker</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-177236</link>
		<dc:creator><![CDATA[David Walker]]></dc:creator>
		<pubDate>Mon, 10 Oct 2011 18:26:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-177236</guid>
		<description><![CDATA[Followup:  If you want to get the number of records for each table, you need to group by object ID and then sum for each group.]]></description>
		<content:encoded><![CDATA[<p>Followup:  If you want to get the number of records for each table, you need to group by object ID and then sum for each group.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Walker</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-177235</link>
		<dc:creator><![CDATA[David Walker]]></dc:creator>
		<pubDate>Mon, 10 Oct 2011 18:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-177235</guid>
		<description><![CDATA[Dave Pinal, you REALLY should update the main article to use something like what Books Online shows:

SELECT SUM (row_count) AS total_number_of_rows 
FROM sys.dm_db_partition_stats
WHERE object_id=OBJECT_ID(&#039;HumanResources.Employee&#039;)    AND (index_id=0 or index_id=1);

That query handles multiple partitions, and handles the schema name correctly.  It will show the results for a heap, or a table with a primary key.  This has been mentioned in the comments a few times, and you say &quot;thanks&quot;, but it would help if you could update the article itself!  The code in the article is not quite correct.

David Walker]]></description>
		<content:encoded><![CDATA[<p>Dave Pinal, you REALLY should update the main article to use something like what Books Online shows:</p>
<p>SELECT SUM (row_count) AS total_number_of_rows<br />
FROM sys.dm_db_partition_stats<br />
WHERE object_id=OBJECT_ID(&#8216;HumanResources.Employee&#8217;)    AND (index_id=0 or index_id=1);</p>
<p>That query handles multiple partitions, and handles the schema name correctly.  It will show the results for a heap, or a table with a primary key.  This has been mentioned in the comments a few times, and you say &#8220;thanks&#8221;, but it would help if you could update the article itself!  The code in the article is not quite correct.</p>
<p>David Walker</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kamaludeen M</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-128430</link>
		<dc:creator><![CDATA[Kamaludeen M]]></dc:creator>
		<pubDate>Tue, 12 Apr 2011 07:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-128430</guid>
		<description><![CDATA[Hi Pinal,

Using your above query, it gives duplicate table names if the tables are partitioned.

How about the below one..

SELECT 
 OBJECT_NAME(P.[object_id])	AS [Table Name]
,SUM(rows)					AS [No. of rows]

FROM sys.partitions AS P 
INNER JOIN sys.tables AS T 
ON T.[object_id] = P.[object_id]

WHERE index_id IN (0,1) AND T.[type] = &#039;U&#039;
GROUP BY P.[object_id]
ORDER BY 2 DESC

Thank you..]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Using your above query, it gives duplicate table names if the tables are partitioned.</p>
<p>How about the below one..</p>
<p>SELECT<br />
 OBJECT_NAME(P.[object_id])	AS [Table Name]<br />
,SUM(rows)					AS [No. of rows]</p>
<p>FROM sys.partitions AS P<br />
INNER JOIN sys.tables AS T<br />
ON T.[object_id] = P.[object_id]</p>
<p>WHERE index_id IN (0,1) AND T.[type] = &#8216;U&#8217;<br />
GROUP BY P.[object_id]<br />
ORDER BY 2 DESC</p>
<p>Thank you..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sean</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-97847</link>
		<dc:creator><![CDATA[sean]]></dc:creator>
		<pubDate>Thu, 04 Nov 2010 16:47:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-97847</guid>
		<description><![CDATA[Thanks Pinal, works great!]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal, works great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravi</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-92120</link>
		<dc:creator><![CDATA[Ravi]]></dc:creator>
		<pubDate>Mon, 11 Oct 2010 14:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-92120</guid>
		<description><![CDATA[Very helpfull... Thank You...]]></description>
		<content:encoded><![CDATA[<p>Very helpfull&#8230; Thank You&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khamida</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-87950</link>
		<dc:creator><![CDATA[khamida]]></dc:creator>
		<pubDate>Wed, 15 Sep 2010 18:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-87950</guid>
		<description><![CDATA[your articles are always helpfull

Thank you]]></description>
		<content:encoded><![CDATA[<p>your articles are always helpfull</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Find Row Count in Table – Find Largest Table in Database – Part 2 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-87000</link>
		<dc:creator><![CDATA[SQL SERVER – Find Row Count in Table – Find Largest Table in Database – Part 2 Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Wed, 08 Sep 2010 01:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-87000</guid>
		<description><![CDATA[[...] 8, 2010 by pinaldave    Last Year I wrote article on the subject SQL SERVER – Find Row Count in Table – Find Largest Table in Database – T-SQL. It is very good to see excellent participation there. In my script I had not taken care of table [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 8, 2010 by pinaldave    Last Year I wrote article on the subject SQL SERVER – Find Row Count in Table – Find Largest Table in Database – T-SQL. It is very good to see excellent participation there. In my script I had not taken care of table [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-86549</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Sat, 04 Sep 2010 04:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-86549</guid>
		<description><![CDATA[Thanks!]]></description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ameena</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-86517</link>
		<dc:creator><![CDATA[Ameena]]></dc:creator>
		<pubDate>Fri, 03 Sep 2010 19:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-86517</guid>
		<description><![CDATA[Pinal,

Your query does not take account of the Schema name. There can be tables having same name but different schema in a database. Also if a table is partitioned, you want to get one row of result 1.e; sum of rows in different partitions. So I have a modified query that I use.

    select  sc.name +&#039;.&#039;+ ta.name
           ,sum(pa.rows)  --  Approximate value, oh well
           from sys.tables ta
           inner join sys.partitions pa
            on pa.object_id = ta.object_id
           inner join sys.schemas sc
			on ta.schema_id = sc.schema_id
		where ta.is_ms_shipped = 0	AND pa.index_id IN (1,0)
          group by  sc.name,ta.name
          ORDER BY sum(pa.rows)  DESC]]></description>
		<content:encoded><![CDATA[<p>Pinal,</p>
<p>Your query does not take account of the Schema name. There can be tables having same name but different schema in a database. Also if a table is partitioned, you want to get one row of result 1.e; sum of rows in different partitions. So I have a modified query that I use.</p>
<p>    select  sc.name +&#8217;.'+ ta.name<br />
           ,sum(pa.rows)  &#8212;  Approximate value, oh well<br />
           from sys.tables ta<br />
           inner join sys.partitions pa<br />
            on pa.object_id = ta.object_id<br />
           inner join sys.schemas sc<br />
			on ta.schema_id = sc.schema_id<br />
		where ta.is_ms_shipped = 0	AND pa.index_id IN (1,0)<br />
          group by  sc.name,ta.name<br />
          ORDER BY sum(pa.rows)  DESC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John G</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-65312</link>
		<dc:creator><![CDATA[John G]]></dc:creator>
		<pubDate>Fri, 16 Apr 2010 11:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-65312</guid>
		<description><![CDATA[Thanks Pinal (and Afonso), really useful]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal (and Afonso), really useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adam</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-62194</link>
		<dc:creator><![CDATA[adam]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 18:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-62194</guid>
		<description><![CDATA[Very helpful, thank you!]]></description>
		<content:encoded><![CDATA[<p>Very helpful, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth Delconte</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-62037</link>
		<dc:creator><![CDATA[Seth Delconte]]></dc:creator>
		<pubDate>Tue, 02 Mar 2010 17:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-62037</guid>
		<description><![CDATA[Thank you!  Very useful script.]]></description>
		<content:encoded><![CDATA[<p>Thank you!  Very useful script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-61965</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Mon, 01 Mar 2010 10:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-61965</guid>
		<description><![CDATA[If you use versions prior to 2005, you need to use

DBCC updateusage(dbname)


for correct result

See this
http://beyondrelational.com/blogs/madhivanan/archive/2007/11/02/different-ways-to-count-rows-from-a-table.aspx]]></description>
		<content:encoded><![CDATA[<p>If you use versions prior to 2005, you need to use</p>
<p>DBCC updateusage(dbname)</p>
<p>for correct result</p>
<p>See this<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2007/11/02/different-ways-to-count-rows-from-a-table.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2007/11/02/different-ways-to-count-rows-from-a-table.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhivanan</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-61964</link>
		<dc:creator><![CDATA[Madhivanan]]></dc:creator>
		<pubDate>Mon, 01 Mar 2010 10:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-61964</guid>
		<description><![CDATA[Only way is to update the table to have Grade to NULL

Update table
Set Grade=NULL]]></description>
		<content:encoded><![CDATA[<p>Only way is to update the table to have Grade to NULL</p>
<p>Update table<br />
Set Grade=NULL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajithamalar</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-56808</link>
		<dc:creator><![CDATA[Ajithamalar]]></dc:creator>
		<pubDate>Tue, 20 Oct 2009 08:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-56808</guid>
		<description><![CDATA[count is mismatching in some tables(large size db)]]></description>
		<content:encoded><![CDATA[<p>count is mismatching in some tables(large size db)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: glyquiroz</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-56010</link>
		<dc:creator><![CDATA[glyquiroz]]></dc:creator>
		<pubDate>Mon, 21 Sep 2009 00:01:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-56010</guid>
		<description><![CDATA[Great code, simple and useful]]></description>
		<content:encoded><![CDATA[<p>Great code, simple and useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-55994</link>
		<dc:creator><![CDATA[Imran Mohammed]]></dc:creator>
		<pubDate>Sun, 20 Sep 2009 05:33:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-55994</guid>
		<description><![CDATA[@Neeraj. (First Post)

Do you mind reading the post, for which you have written a comment. 

Please read Pinal Dave post on this web page. 

~IM.]]></description>
		<content:encoded><![CDATA[<p>@Neeraj. (First Post)</p>
<p>Do you mind reading the post, for which you have written a comment. </p>
<p>Please read Pinal Dave post on this web page. </p>
<p>~IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-55982</link>
		<dc:creator><![CDATA[Neeraj]]></dc:creator>
		<pubDate>Sat, 19 Sep 2009 06:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-55982</guid>
		<description><![CDATA[Hi,

How can I retrieve the rows of a table where any column of the row contains NULL, while I have no knowledge about the any column name of the table]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can I retrieve the rows of a table where any column of the row contains NULL, while I have no knowledge about the any column name of the table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-55981</link>
		<dc:creator><![CDATA[Neeraj]]></dc:creator>
		<pubDate>Sat, 19 Sep 2009 06:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-55981</guid>
		<description><![CDATA[Hi,
How can I find the total number of rows in a specific table without using query like SELECT COUNT(*) FROM TableName]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
How can I find the total number of rows in a specific table without using query like SELECT COUNT(*) FROM TableName</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-55824</link>
		<dc:creator><![CDATA[Frank]]></dc:creator>
		<pubDate>Fri, 11 Sep 2009 20:00:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-55824</guid>
		<description><![CDATA[Thanks!  very helpful.]]></description>
		<content:encoded><![CDATA[<p>Thanks!  very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jolly</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-55193</link>
		<dc:creator><![CDATA[Jolly]]></dc:creator>
		<pubDate>Tue, 25 Aug 2009 13:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-55193</guid>
		<description><![CDATA[One can count the numbers of rows in a table by using 
count(@@rowcount) as mentioned here--

select count(@@rowcount) from TableName]]></description>
		<content:encoded><![CDATA[<p>One can count the numbers of rows in a table by using<br />
count(@@rowcount) as mentioned here&#8211;</p>
<p>select count(@@rowcount) from TableName</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Afonso Mata</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-45892</link>
		<dc:creator><![CDATA[Afonso Mata]]></dc:creator>
		<pubDate>Thu, 22 Jan 2009 10:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-45892</guid>
		<description><![CDATA[Hello Pinal!

i was talking to my brother about this post, and as other readers we proved this script not to work on SQL Server 2000, because this older DBMS does not have the object sys.dm_db_partition_stats :(

Fortunally we came up with this little alternative scrit that works (we think) perfectly on both DBMS.

Tell us what you think about it, and what are the pros and cons vs the one you posted.
Thanks in advance ;)

SELECT OBJECT_NAME(id),rowcnt 
FROM SYSINDEXES
WHERE OBJECTPROPERTY(id,&#039;isUserTable&#039;)=1 AND indid &lt; 2
ORDER BY rowcnt DESC

Best Regards, 
Afonso.]]></description>
		<content:encoded><![CDATA[<p>Hello Pinal!</p>
<p>i was talking to my brother about this post, and as other readers we proved this script not to work on SQL Server 2000, because this older DBMS does not have the object sys.dm_db_partition_stats :(</p>
<p>Fortunally we came up with this little alternative scrit that works (we think) perfectly on both DBMS.</p>
<p>Tell us what you think about it, and what are the pros and cons vs the one you posted.<br />
Thanks in advance ;)</p>
<p>SELECT OBJECT_NAME(id),rowcnt<br />
FROM SYSINDEXES<br />
WHERE OBJECTPROPERTY(id,&#8217;isUserTable&#8217;)=1 AND indid &lt; 2<br />
ORDER BY rowcnt DESC</p>
<p>Best Regards,<br />
Afonso.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uday</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-45807</link>
		<dc:creator><![CDATA[Uday]]></dc:creator>
		<pubDate>Wed, 21 Jan 2009 01:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-45807</guid>
		<description><![CDATA[Great solution!!]]></description>
		<content:encoded><![CDATA[<p>Great solution!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh Gopal</title>
		<link>http://blog.sqlauthority.com/2009/01/13/sql-server-find-row-count-in-table-find-largest-table-in-database-t-sql/#comment-45649</link>
		<dc:creator><![CDATA[Ganesh Gopal]]></dc:creator>
		<pubDate>Thu, 15 Jan 2009 19:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=2013#comment-45649</guid>
		<description><![CDATA[How do you do the same in SQL 2000 ?]]></description>
		<content:encoded><![CDATA[<p>How do you do the same in SQL 2000 ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

