<?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>SQL Server Planet &#187; partitioning</title>
	<atom:link href="http://sqlserverplanet.com/tag/partitioning/feed" rel="self" type="application/rss+xml" />
	<link>http://sqlserverplanet.com</link>
	<description>Tips and Articles on SQL Server</description>
	<lastBuildDate>Sat, 19 May 2012 05:20:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Query Which Tables are Partitioned</title>
		<link>http://sqlserverplanet.com/maintenance/query-which-tables-are-partitioned</link>
		<comments>http://sqlserverplanet.com/maintenance/query-which-tables-are-partitioned#comments</comments>
		<pubDate>Sat, 20 Jun 2009 03:12:26 +0000</pubDate>
		<dc:creator>Derek Dieter</dc:creator>
				<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[partitioning]]></category>

		<guid isPermaLink="false">http://sqlserverplanet.com/?p=299</guid>
		<description><![CDATA[List out which tables are partitioned, and what partition scheme and partition function they use: select t.name as TableName, ps.name as PartitionScheme, ps.data_space_id, pf.name as PartitionFunction, pf.function_id from sys.tables t join sys.indexes i on t.object_id = i.object_id join sys.partition_schemes ps on i.data_space_id = ps.data_space_id join sys.partition_functions pf on ps.function_id = pf.function_id where i.index_id &#38;lt; 2 [...]]]></description>
		<wfw:commentRss>http://sqlserverplanet.com/maintenance/query-which-tables-are-partitioned/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

