<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>belle's sql musings &#187; SQLXML</title>
	<atom:link href="http://www.sqlmusings.com/category/sqlxml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sqlmusings.com</link>
	<description>ramblings, discoveries, tutorials on sql server and other database stuff</description>
	<lastBuildDate>Tue, 03 Aug 2010 18:04:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SQL Server XML Red Gate Ebook, XQuery Labs</title>
		<link>http://www.sqlmusings.com/2009/06/08/sql-server-xml-red-gate-ebook-xquery-labs/</link>
		<comments>http://www.sqlmusings.com/2009/06/08/sql-server-xml-red-gate-ebook-xquery-labs/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 02:35:09 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[DBA Toolbox / T-SQL Scripts]]></category>
		<category><![CDATA[Ebooks]]></category>
		<category><![CDATA[Resources/References]]></category>
		<category><![CDATA[SQLXML]]></category>
		<category><![CDATA[T-SQL Tips and Tricks]]></category>
		<category><![CDATA[Ebook]]></category>
		<category><![CDATA[SQLXML How To]]></category>
		<category><![CDATA[XSD]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=924</guid>
		<description><![CDATA[Jacob Sebastian is a SQL Server XML Guru!
Check out his collection for XQUery Labs. This is the first 12 of his series, and right now he has 43 and counting:

XQuery Sample Scripts
    * XQuery Lab 1 &#8211; Transforming rows to columns
    * XQuery Lab 2 &#8211; An example using [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2008/07/01/learning-sqlxml-on-sql-server-2005-series-of-tutorials/' rel='bookmark' title='Permanent Link: Learning SQLXML on SQL Server 2005 – series of tutorials'>Learning SQLXML on SQL Server 2005 – series of tutorials</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/06/11/have-you-downloaded-the-free-ms-press-sql-server-ebook-yet/' rel='bookmark' title='Permanent Link: Have You Downloaded the Free MS Press SQL Server 2008 Ebook Yet?'>Have You Downloaded the Free MS Press SQL Server 2008 Ebook Yet?</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/redgate-ebook-mastering-sql-server-profiler/' rel='bookmark' title='Permanent Link: RedGate Free Ebook: Mastering SQL Server Profiler'>RedGate Free Ebook: Mastering SQL Server Profiler</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2010/04/14/sql-server-2008-r2-ssrs-free-ebook-training-kit-out/' rel='bookmark' title='Permanent Link: SQL Server 2008 R2 (SSRS) Free Ebook, Training Kit Out'>SQL Server 2008 R2 (SSRS) Free Ebook, Training Kit Out</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/06/08/sql-server-xml-red-gate-ebook-xquery-labs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLXML : How to Work With XML Elements (or Nodes) in SQL Server</title>
		<link>http://www.sqlmusings.com/2009/04/12/sqlxml-how-to-work-with-xml-elements-or-nodes-in-sql-server/</link>
		<comments>http://www.sqlmusings.com/2009/04/12/sqlxml-how-to-work-with-xml-elements-or-nodes-in-sql-server/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 07:02:38 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLXML]]></category>
		<category><![CDATA[T-SQL Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[SQLXML How To]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=645</guid>
		<description><![CDATA[Assume this is your XML snippet


DECLARE @authorsXML XML

SET @authorsXML = '
&#60;Author&#62;
  &#60;ID&#62;172-32-1176&#60;/ID&#62;
  &#60;LastName&#62;White&#60;/LastName&#62;
  &#60;FirstName&#62;Johnson&#60;/FirstName&#62;
  &#60;Address&#62;
    &#60;Street&#62;10932 Bigge Rd.&#60;/Street&#62;
    &#60;City&#62;Menlo Park&#60;/City&#62;
    &#60;State&#62;CA&#60;/State&#62;
  &#60;/Address&#62;
&#60;/Author&#62;
'

Note that the examples below show how you can manipulate XML nodes &#8211; but most operations require singleton values. Ie, [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/04/09/sqlxml-how-to-merge-two-nodes-using-for-xml-path/' rel='bookmark' title='Permanent Link: SQLXML : How to Merge Two Nodes Using FOR XML PATH'>SQLXML : How to Merge Two Nodes Using FOR XML PATH</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/how-to-list-schema-elements-and-attributes/' rel='bookmark' title='Permanent Link: SQLXML : How to List Schema Elements and Attributes'>SQLXML : How to List Schema Elements and Attributes</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/13/valid-sqlxml-xsd-data-types-and-sample-sql-server-xml-schemas/' rel='bookmark' title='Permanent Link: Valid SQLXML XSD Data Types, and Sample SQL Server XML Schemas'>Valid SQLXML XSD Data Types, and Sample SQL Server XML Schemas</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/07/01/learning-sqlxml-on-sql-server-2005-series-of-tutorials/' rel='bookmark' title='Permanent Link: Learning SQLXML on SQL Server 2005 – series of tutorials'>Learning SQLXML on SQL Server 2005 – series of tutorials</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/04/12/sqlxml-how-to-work-with-xml-elements-or-nodes-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQLXML : How to Merge Two Nodes Using FOR XML PATH</title>
		<link>http://www.sqlmusings.com/2009/04/09/sqlxml-how-to-merge-two-nodes-using-for-xml-path/</link>
		<comments>http://www.sqlmusings.com/2009/04/09/sqlxml-how-to-merge-two-nodes-using-for-xml-path/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 06:29:35 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLXML]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=624</guid>
		<description><![CDATA[
-- ============================================================
-- sample code that shows how to merge different nodes
-- in the same XML document by using FOR XML PATH()
-- Donabel Santos
-- ============================================================

-- sample XML snippet
DECLARE @sampleXML XML
SET @sampleXML =
'
&#60;Contacts&#62;
 &#60;Contact Type=&#34;Main&#34; Value=&#34;John Doe&#34;&#62;
 &#60;Locations&#62;
 &#60;Location Type=&#34;Headquarters&#34; Address=&#34;123 XYZ&#34; City=&#34;New Westminster&#34;
 Province=&#34;BC&#34; Country=&#34;CA&#34; PostalCode=&#34;V1L1B6&#34; /&#62;
 &#60;/Locations&#62;
 &#60;Phones&#62;
 &#60;Phone Type=&#34;Main&#34; Value=&#34;6041112222&#34; /&#62;
 &#60;Phone Type=&#34;Secondary&#34; Value=&#34;6041113333&#34; [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/04/12/sqlxml-how-to-work-with-xml-elements-or-nodes-in-sql-server/' rel='bookmark' title='Permanent Link: SQLXML : How to Work With XML Elements (or Nodes) in SQL Server'>SQLXML : How to Work With XML Elements (or Nodes) in SQL Server</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/11/order-of-attribute-centric-columns-in-for-xml-path-matters/' rel='bookmark' title='Permanent Link: Order of Attribute-Centric Columns in FOR XML PATH matters'>Order of Attribute-Centric Columns in FOR XML PATH matters</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/13/valid-sqlxml-xsd-data-types-and-sample-sql-server-xml-schemas/' rel='bookmark' title='Permanent Link: Valid SQLXML XSD Data Types, and Sample SQL Server XML Schemas'>Valid SQLXML XSD Data Types, and Sample SQL Server XML Schemas</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/sqlxml-how-to-create-an-xml-schema/' rel='bookmark' title='Permanent Link: SQLXML : How to Create an XML Schema'>SQLXML : How to Create an XML Schema</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/04/09/sqlxml-how-to-merge-two-nodes-using-for-xml-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLXML : How to Use SQL Server XML Function exist()</title>
		<link>http://www.sqlmusings.com/2009/04/08/sqlxml-how-to-use-sql-server-xml-function-exist/</link>
		<comments>http://www.sqlmusings.com/2009/04/08/sqlxml-how-to-use-sql-server-xml-function-exist/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 06:14:26 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLXML]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=617</guid>
		<description><![CDATA[

-- ============================================================
-- sample code on using the SQL Server xml method exist()
-- several samples shown
-- Donabel Santos
-- ============================================================

DECLARE @xmlSnippet XML
DECLARE @id SMALLINT
DECLARE @value VARCHAR(20)

SET @xmlSnippet =
'
&#60;ninjaElement id=&#34;1&#34;&#62;SQL Server Ninja&#60;/ninjaElement&#62;
&#60;ninjaElement id=&#34;2&#34;&#62;SharePoint Ninja&#60;/ninjaElement&#62;
&#60;ninjaElement id=&#34;3&#34;&#62;ASP.NET Ninja&#60;/ninjaElement&#62;
'

-- this is what we will look for
SET @id    = 2
SET @value ='SQL Server Ninja'

-- note exist() will return only [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/04/04/sqlxml-how-to-join-multiple-xml-snippets-using-query-and-union-all/' rel='bookmark' title='Permanent Link: SQLXML : How to Join Multiple XML Snippets (using query() and UNION ALL)'>SQLXML : How to Join Multiple XML Snippets (using query() and UNION ALL)</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/04/12/sqlxml-how-to-work-with-xml-elements-or-nodes-in-sql-server/' rel='bookmark' title='Permanent Link: SQLXML : How to Work With XML Elements (or Nodes) in SQL Server'>SQLXML : How to Work With XML Elements (or Nodes) in SQL Server</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/11/05/view-or-function-sysdm_exec_sessions-has-more-column-names/' rel='bookmark' title='Permanent Link: View or function &#8217;sys.dm_exec_sessions&#8217; has more column names &#8230;'>View or function &#8217;sys.dm_exec_sessions&#8217; has more column names &#8230;</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/sqlxml-how-to-create-an-xml-schema/' rel='bookmark' title='Permanent Link: SQLXML : How to Create an XML Schema'>SQLXML : How to Create an XML Schema</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/04/08/sqlxml-how-to-use-sql-server-xml-function-exist/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SQLXML : How to Join Multiple XML Snippets (using query() and UNION ALL)</title>
		<link>http://www.sqlmusings.com/2009/04/04/sqlxml-how-to-join-multiple-xml-snippets-using-query-and-union-all/</link>
		<comments>http://www.sqlmusings.com/2009/04/04/sqlxml-how-to-join-multiple-xml-snippets-using-query-and-union-all/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 06:04:06 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLXML]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/?p=599</guid>
		<description><![CDATA[

-- ============================================================
-- sample code on joining multiple XML snippets
-- using query() and UNION ALL
-- Donabel Santos
-- ============================================================

-- declare xml variables
DECLARE @firstXMLSnippet XML
DECLARE @secondXMLSnippet XML

-- first XML snippet
SET  @firstXMLSnippet =
'
  &#60;attributes&#62;
    &#60;attribute id=&#34;13&#34; name=&#34;EmpNo&#34;&#62;
      &#60;item value=&#34;10&#34; /&#62;
    &#60;/attribute&#62;
    &#60;attribute id=&#34;44&#34; [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/03/21/sqlxml-how-to-save-xml-query-results-to-a-file-using-bcp/' rel='bookmark' title='Permanent Link: SQLXML : How To Save XML Query Results to a File Using BCP'>SQLXML : How To Save XML Query Results to a File Using BCP</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/04/08/sqlxml-how-to-use-sql-server-xml-function-exist/' rel='bookmark' title='Permanent Link: SQLXML : How to Use SQL Server XML Function exist()'>SQLXML : How to Use SQL Server XML Function exist()</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/how-to-format-query-result-as-comma-separated-values-csv/' rel='bookmark' title='Permanent Link: How to Format Query Result as Comma Separated Values (CSV)'>How to Format Query Result as Comma Separated Values (CSV)</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/06/12/executing-batches-multiple-times-sql-server-2005-only/' rel='bookmark' title='Permanent Link: Executing Batches Multiple Times (SQL Server 2005 only)'>Executing Batches Multiple Times (SQL Server 2005 only)</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/04/04/sqlxml-how-to-join-multiple-xml-snippets-using-query-and-union-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLXML : How To Save XML Query Results to a File Using BCP</title>
		<link>http://www.sqlmusings.com/2009/03/21/sqlxml-how-to-save-xml-query-results-to-a-file-using-bcp/</link>
		<comments>http://www.sqlmusings.com/2009/03/21/sqlxml-how-to-save-xml-query-results-to-a-file-using-bcp/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 13:20:29 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLXML]]></category>
		<category><![CDATA[T-SQL Tips and Tricks]]></category>
		<category><![CDATA[musings]]></category>
		<category><![CDATA[bcp]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[SQL XML]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/2009/03/21/sqlxml-how-to-save-xml-query-results-to-a-file-using-bcp/</guid>
		<description><![CDATA[One way to save your XML query results to the file system is by using bcp (bulk copy program).
Be aware of the following before deciding to use bcp for your regular export requirements:

bcp is a program external to SSMS. If you need to use this from within your scripts, you will need to enable xp_cmdshell. [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/03/20/sqlxml-how-to-bulk-load-xml-from-a-file-using-openxml/' rel='bookmark' title='Permanent Link: SQLXML : How to Bulk Load XML From a File Using OPENXML'>SQLXML : How to Bulk Load XML From a File Using OPENXML</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/04/04/sqlxml-how-to-join-multiple-xml-snippets-using-query-and-union-all/' rel='bookmark' title='Permanent Link: SQLXML : How to Join Multiple XML Snippets (using query() and UNION ALL)'>SQLXML : How to Join Multiple XML Snippets (using query() and UNION ALL)</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/09/generating-xsd-from-an-xml-file/' rel='bookmark' title='Permanent Link: Generating XSD from an XML File'>Generating XSD from an XML File</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/17/sql-server-related-cheat-sheets-that-can-save-you-time/' rel='bookmark' title='Permanent Link: SQL Server-Related Cheat Sheets That Can Save You Time'>SQL Server-Related Cheat Sheets That Can Save You Time</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/03/21/sqlxml-how-to-save-xml-query-results-to-a-file-using-bcp/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>SQLXML : How to Bulk Load XML From a File Using OPENXML</title>
		<link>http://www.sqlmusings.com/2009/03/20/sqlxml-how-to-bulk-load-xml-from-a-file-using-openxml/</link>
		<comments>http://www.sqlmusings.com/2009/03/20/sqlxml-how-to-bulk-load-xml-from-a-file-using-openxml/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 07:45:38 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[DBA Toolbox / T-SQL Scripts]]></category>
		<category><![CDATA[SQLXML]]></category>
		<category><![CDATA[T-SQL Tips and Tricks]]></category>
		<category><![CDATA[OPENXML]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL XML]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/2009/03/20/sqlxml-how-to-bulk-load-xml-from-a-file-using-openxml/</guid>
		<description><![CDATA[Using OPENXML you can import XML documents into an XML variable, or into a table that has XML columns. The following is an example:


   1: -- ==========================================================================
   2: -- Object       : OPENXML1.sql
   3: -- Object Type  : Script
   4: -- [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/03/21/sqlxml-how-to-save-xml-query-results-to-a-file-using-bcp/' rel='bookmark' title='Permanent Link: SQLXML : How To Save XML Query Results to a File Using BCP'>SQLXML : How To Save XML Query Results to a File Using BCP</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/10/09/generating-xsd-from-an-xml-file/' rel='bookmark' title='Permanent Link: Generating XSD from an XML File'>Generating XSD from an XML File</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2007/11/21/how-to-increase-an-innodb-log-file-size/' rel='bookmark' title='Permanent Link: How to increase an InnoDB log file size'>How to increase an InnoDB log file size</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2010/03/10/ssrs-error-configuration-file-contains-an-element-that-is-not-valid/' rel='bookmark' title='Permanent Link: SSRS Error: configuration file contains an element that is not valid'>SSRS Error: configuration file contains an element that is not valid</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/03/20/sqlxml-how-to-bulk-load-xml-from-a-file-using-openxml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLXML : How to Alter Existing Column Schema (XSD)</title>
		<link>http://www.sqlmusings.com/2009/03/19/sqlxml-how-to-alter-existing-column-schema-xsd/</link>
		<comments>http://www.sqlmusings.com/2009/03/19/sqlxml-how-to-alter-existing-column-schema-xsd/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 05:43:10 +0000</pubDate>
		<dc:creator>belle</dc:creator>
				<category><![CDATA[SQLXML]]></category>
		<category><![CDATA[T-SQL Tips and Tricks]]></category>
		<category><![CDATA[ALTER]]></category>
		<category><![CDATA[Schema]]></category>
		<category><![CDATA[XSD]]></category>

		<guid isPermaLink="false">http://www.sqlmusings.com/2009/03/19/sqlxml-how-to-alter-existing-column-schema-xsd/</guid>
		<description><![CDATA[Sometimes you may need to change schema definitions in existing columns.
The following shows an example of how you can do this:


   1: -- drop the XML schema from existing column definitions
   2: ALTER TABLE AD
   3:    ALTER COLUMN Title xml
   4:&#160; 
   [...]

<p style="margin-top:25px">Related posts:<ol><li><a href='http://www.sqlmusings.com/2009/03/15/sqlxml-how-to-create-an-xml-schema/' rel='bookmark' title='Permanent Link: SQLXML : How to Create an XML Schema'>SQLXML : How to Create an XML Schema</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/how-to-list-schema-elements-and-attributes/' rel='bookmark' title='Permanent Link: SQLXML : How to List Schema Elements and Attributes'>SQLXML : How to List Schema Elements and Attributes</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2009/03/15/sqlxml-how-to-check-if-an-xml-schema-already-exists/' rel='bookmark' title='Permanent Link: SQLXML : How to Check if an XML Schema Already Exists'>SQLXML : How to Check if an XML Schema Already Exists</a> <small>...</small></li><li><a href='http://www.sqlmusings.com/2008/11/05/view-or-function-sysdm_exec_sessions-has-more-column-names/' rel='bookmark' title='Permanent Link: View or function &#8217;sys.dm_exec_sessions&#8217; has more column names &#8230;'>View or function &#8217;sys.dm_exec_sessions&#8217; has more column names &#8230;</a> <small>...</small></li></ol>]]></description>
		<wfw:commentRss>http://www.sqlmusings.com/2009/03/19/sqlxml-how-to-alter-existing-column-schema-xsd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
