<?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; 2005 &#8211; Database Table Partitioning Tutorial &#8211; How to Horizontal Partition Database Table</title>
	<atom:link href="http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: VIRAL JAIN</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-477070</link>
		<dc:creator><![CDATA[VIRAL JAIN]]></dc:creator>
		<pubDate>Fri, 17 May 2013 10:45:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-477070</guid>
		<description><![CDATA[Yeah… .NDF - Secondary database file used by Microsoft SQL Server; created when the primary .MDF database becomes too large (such as when there is no disk space left); may also be manually added to the SQL Server File Group to distribute data between the two files.]]></description>
		<content:encoded><![CDATA[<p>Yeah… .NDF &#8211; Secondary database file used by Microsoft SQL Server; created when the primary .MDF database becomes too large (such as when there is no disk space left); may also be manually added to the SQL Server File Group to distribute data between the two files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: laxman</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-450768</link>
		<dc:creator><![CDATA[laxman]]></dc:creator>
		<pubDate>Sat, 06 Apr 2013 12:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-450768</guid>
		<description><![CDATA[Hi Pinal 

Please can you reply on my above question on multiple column partition in a table.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal </p>
<p>Please can you reply on my above question on multiple column partition in a table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: laxman</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-448926</link>
		<dc:creator><![CDATA[laxman]]></dc:creator>
		<pubDate>Tue, 02 Apr 2013 18:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-448926</guid>
		<description><![CDATA[Hi Pinal

Is it possible to partition a table using 2 column value&#039;s instead of only 1 column for the partition function?

Consider a table with 4 columns

    ID (int, primary key, 
    name (varchar),
    Country (varchar), 
    region (varchar)


ex:
     ID      name       Country              region

      1       rahul       India                  karnataka
      2       raj           India                  maharastra
      3       brad        Usa                    california
      4       richard    Usa                    arizona

I want partition data combining based on country and region
1st  partition data like india and karnataka 
2nd partition data like india and maharastra. 
3rd  partition data like usa and california
4th  partition data like  usa and arizona]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal</p>
<p>Is it possible to partition a table using 2 column value&#8217;s instead of only 1 column for the partition function?</p>
<p>Consider a table with 4 columns</p>
<p>    ID (int, primary key,<br />
    name (varchar),<br />
    Country (varchar),<br />
    region (varchar)</p>
<p>ex:<br />
     ID      name       Country              region</p>
<p>      1       rahul       India                  karnataka<br />
      2       raj           India                  maharastra<br />
      3       brad        Usa                    california<br />
      4       richard    Usa                    arizona</p>
<p>I want partition data combining based on country and region<br />
1st  partition data like india and karnataka<br />
2nd partition data like india and maharastra.<br />
3rd  partition data like usa and california<br />
4th  partition data like  usa and arizona</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #013 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-413090</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #013 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 26 Jan 2013 01:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-413090</guid>
		<description><![CDATA[[...] Database Table Partitioning Tutorial – How to Horizontal Partition Database Table Database partitioning is a very important concept and very useful. Many a times DBA partition database for performance and many times to handle large volume. As this operation is usually done when there are huge amount of data exists this is quite a critical task to be performed by the DBA. In this blog post, I have explained step by step how to create horizontal partition which provides optimal performance. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Database Table Partitioning Tutorial – How to Horizontal Partition Database Table Database partitioning is a very important concept and very useful. Many a times DBA partition database for performance and many times to handle large volume. As this operation is usually done when there are huge amount of data exists this is quite a critical task to be performed by the DBA. In this blog post, I have explained step by step how to create horizontal partition which provides optimal performance. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manoj</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-410724</link>
		<dc:creator><![CDATA[manoj]]></dc:creator>
		<pubDate>Mon, 21 Jan 2013 13:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-410724</guid>
		<description><![CDATA[Manoj

I am new to DB, I have a database with 30gb single mdf file, and the perfromance of the database appears to be slow.

I have below queries,

1.how can i split the 30gb mdf file into many mdf files?, if this can be done, will this splitting spread the 30gb data accross multiple mdf/ndf files?

2.I have tried adding the mdf/ndf files ,under database-&gt;properties-&gt;files, if Iuncheck the autogrowth of the 30gb mdf file, will the data automatically move to the newly added mdf/ndf files?

3.can something be done in SQL, that when importing the .bak file of 30gb, data can be split accross multiple mdf/ndf files created prior to the restoration of the database backup file?

Please help me.. Any help ASAP, will be a lifesaver for me]]></description>
		<content:encoded><![CDATA[<p>Manoj</p>
<p>I am new to DB, I have a database with 30gb single mdf file, and the perfromance of the database appears to be slow.</p>
<p>I have below queries,</p>
<p>1.how can i split the 30gb mdf file into many mdf files?, if this can be done, will this splitting spread the 30gb data accross multiple mdf/ndf files?</p>
<p>2.I have tried adding the mdf/ndf files ,under database-&gt;properties-&gt;files, if Iuncheck the autogrowth of the 30gb mdf file, will the data automatically move to the newly added mdf/ndf files?</p>
<p>3.can something be done in SQL, that when importing the .bak file of 30gb, data can be split accross multiple mdf/ndf files created prior to the restoration of the database backup file?</p>
<p>Please help me.. Any help ASAP, will be a lifesaver for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: this website</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-408226</link>
		<dc:creator><![CDATA[this website]]></dc:creator>
		<pubDate>Tue, 15 Jan 2013 22:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-408226</guid>
		<description><![CDATA[Hey There. I found your blog using msn. This is a really well written article.
I&#039;ll be sure to bookmark it and come back to read more of your useful information. Thanks for the post. I&#039;ll definitely return.]]></description>
		<content:encoded><![CDATA[<p>Hey There. I found your blog using msn. This is a really well written article.<br />
I&#8217;ll be sure to bookmark it and come back to read more of your useful information. Thanks for the post. I&#8217;ll definitely return.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: akondo</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-406087</link>
		<dc:creator><![CDATA[akondo]]></dc:creator>
		<pubDate>Thu, 10 Jan 2013 14:51:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-406087</guid>
		<description><![CDATA[It is .ndf]]></description>
		<content:encoded><![CDATA[<p>It is .ndf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-406022</link>
		<dc:creator><![CDATA[Vivek]]></dc:creator>
		<pubDate>Thu, 10 Jan 2013 11:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-406022</guid>
		<description><![CDATA[Hi Dave, can you explain me how can I partition my data warehouse table it has got one clustered composite primary key [snapshot_date_key, process_date_Key, process_unit_key, metric_key, uom_key, msr_type_key] it has got around 14 million data and all its queries are so effective. we&#039;d like to tune it.. hence we are looking for partitioning.
kindly share your insights and thoughts about this? also revert me in case if you need additional information.
-Vivek]]></description>
		<content:encoded><![CDATA[<p>Hi Dave, can you explain me how can I partition my data warehouse table it has got one clustered composite primary key [snapshot_date_key, process_date_Key, process_unit_key, metric_key, uom_key, msr_type_key] it has got around 14 million data and all its queries are so effective. we&#8217;d like to tune it.. hence we are looking for partitioning.<br />
kindly share your insights and thoughts about this? also revert me in case if you need additional information.<br />
-Vivek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cornasdfcornasdf</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-349874</link>
		<dc:creator><![CDATA[cornasdfcornasdf]]></dc:creator>
		<pubDate>Mon, 17 Sep 2012 09:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-349874</guid>
		<description><![CDATA[Lian, We just went through this recently (see blog below for more details).  
When you apply your partition function sql server will reorganize the data into files to match your function.  be aware that this can take some time! 

As new data is written into the database, is is written to the correct file/partition.]]></description>
		<content:encoded><![CDATA[<p>Lian, We just went through this recently (see blog below for more details).<br />
When you apply your partition function sql server will reorganize the data into files to match your function.  be aware that this can take some time! </p>
<p>As new data is written into the database, is is written to the correct file/partition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lian</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-349857</link>
		<dc:creator><![CDATA[Lian]]></dc:creator>
		<pubDate>Mon, 17 Sep 2012 09:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-349857</guid>
		<description><![CDATA[Pinal, this process is fine for new tables , but how do I create a partition on an existing table and how is the new partion updated regularly ?]]></description>
		<content:encoded><![CDATA[<p>Pinal, this process is fine for new tables , but how do I create a partition on an existing table and how is the new partion updated regularly ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-338815</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Wed, 29 Aug 2012 14:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-338815</guid>
		<description><![CDATA[Hi Dave, thanks for the simple tutorial. I just have a question which I&#039;m not sure if you have answered it already. How does Partition help in performance when you have a normalized schema with 1 main table and 4 child tables all connected with a unique id (bigint).

basically on our schema the important thing is a datetime field named WEEK because this determines the chronological order of records however this field is only present on the Main/Parent table. How does partitioning affect all our Query statements where they are joined together with the child tables?

Thank you in advance.]]></description>
		<content:encoded><![CDATA[<p>Hi Dave, thanks for the simple tutorial. I just have a question which I&#8217;m not sure if you have answered it already. How does Partition help in performance when you have a normalized schema with 1 main table and 4 child tables all connected with a unique id (bigint).</p>
<p>basically on our schema the important thing is a datetime field named WEEK because this determines the chronological order of records however this field is only present on the Main/Parent table. How does partitioning affect all our Query statements where they are joined together with the child tables?</p>
<p>Thank you in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-336874</link>
		<dc:creator><![CDATA[Jimmy]]></dc:creator>
		<pubDate>Fri, 24 Aug 2012 16:40:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-336874</guid>
		<description><![CDATA[Very nice simple example. Thanks Dave.]]></description>
		<content:encoded><![CDATA[<p>Very nice simple example. Thanks Dave.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sap</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-336330</link>
		<dc:creator><![CDATA[sap]]></dc:creator>
		<pubDate>Thu, 23 Aug 2012 13:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-336330</guid>
		<description><![CDATA[if i 2 partition(p1,p2) i want to truncate only p2 partition as it will populated with older data so ,what will be the sql condition to truncate only parition p2 on that table.]]></description>
		<content:encoded><![CDATA[<p>if i 2 partition(p1,p2) i want to truncate only p2 partition as it will populated with older data so ,what will be the sql condition to truncate only parition p2 on that table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-336059</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 23 Aug 2012 06:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-336059</guid>
		<description><![CDATA[Create a procedure that deletes old data based on date column and schedule that procedure to run periodically]]></description>
		<content:encoded><![CDATA[<p>Create a procedure that deletes old data based on date column and schedule that procedure to run periodically</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sap</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-335734</link>
		<dc:creator><![CDATA[sap]]></dc:creator>
		<pubDate>Wed, 22 Aug 2012 19:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-335734</guid>
		<description><![CDATA[i have very big table which i want to implement partition as you explained but how should i truncate the data which is older than some period as automatic job]]></description>
		<content:encoded><![CDATA[<p>i have very big table which i want to implement partition as you explained but how should i truncate the data which is older than some period as automatic job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-301414</link>
		<dc:creator><![CDATA[Andrea]]></dc:creator>
		<pubDate>Thu, 14 Jun 2012 22:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-301414</guid>
		<description><![CDATA[Here is an interesting question for you Dave,
I have a partitioned table with a clustered index on start_dt which is a datetime type field.
The same table has a few more datetime fields one of them being customer_call_start_date.
When creating an index on this table and having a key on the customer_call_start_date is it better to write it this way:
CREATE NONCLUSTERED INDEX [myIndex] ON [Schema].[table] 
(
	[Column1] ASC,
	[customer_call_start_date] ASC
)
ON [Partition_Scheme_Partition]([START_DT])

or this way:
CREATE NONCLUSTERED INDEX [myIndex] ON [Schema].[table] 
(
	[Column1] ASC,
	[customer_call_start_date] ASC
)
ON [Partition_Scheme_Partition]([customer_call_start_date])

Thank you
Andrea]]></description>
		<content:encoded><![CDATA[<p>Here is an interesting question for you Dave,<br />
I have a partitioned table with a clustered index on start_dt which is a datetime type field.<br />
The same table has a few more datetime fields one of them being customer_call_start_date.<br />
When creating an index on this table and having a key on the customer_call_start_date is it better to write it this way:<br />
CREATE NONCLUSTERED INDEX [myIndex] ON [Schema].[table]<br />
(<br />
	[Column1] ASC,<br />
	[customer_call_start_date] ASC<br />
)<br />
ON [Partition_Scheme_Partition]([START_DT])</p>
<p>or this way:<br />
CREATE NONCLUSTERED INDEX [myIndex] ON [Schema].[table]<br />
(<br />
	[Column1] ASC,<br />
	[customer_call_start_date] ASC<br />
)<br />
ON [Partition_Scheme_Partition]([customer_call_start_date])</p>
<p>Thank you<br />
Andrea</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hirdesh Sharad</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-293195</link>
		<dc:creator><![CDATA[Hirdesh Sharad]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 06:45:47 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-293195</guid>
		<description><![CDATA[Dear pinal, 
I am regularly reading your sql blogs, 
the main problem in your blog is you are not specifying that which edition of sql server contain the particular concept. ex: partitioning is possible only in enterprise edition but you didnt mention it anywhere,
So pls form next time keep in mind to tell edition of sql server.]]></description>
		<content:encoded><![CDATA[<p>Dear pinal,<br />
I am regularly reading your sql blogs,<br />
the main problem in your blog is you are not specifying that which edition of sql server contain the particular concept. ex: partitioning is possible only in enterprise edition but you didnt mention it anywhere,<br />
So pls form next time keep in mind to tell edition of sql server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tharindu Dhaneenja</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-289738</link>
		<dc:creator><![CDATA[Tharindu Dhaneenja]]></dc:creator>
		<pubDate>Mon, 28 May 2012 05:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-289738</guid>
		<description><![CDATA[Hi Pinal, What are Disadvantages having table Partition? is Insert,Update and delete slow?
Thanks
Tharindu Dhaneenja]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal, What are Disadvantages having table Partition? is Insert,Update and delete slow?<br />
Thanks<br />
Tharindu Dhaneenja</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramesh</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-287542</link>
		<dc:creator><![CDATA[Ramesh]]></dc:creator>
		<pubDate>Wed, 23 May 2012 10:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-287542</guid>
		<description><![CDATA[Hi Dave,

I am created partitioned table using datetime, 
I defined range for month upto one year &#039;2011-01-01&#039;,&#039;2011-02-1&#039;,&#039;2011-03-1&#039;
And I created a Partitioned Table.

when I Looking into sys.partitions

SELECT      partition_id, object_id, partition_number, rows
FROM        sys.partitions
WHERE       object_id = OBJECT_ID(&#039;partitionedtablet&#039;) 
order by partition_Number

______________________________________________________________

*** I am getting twise or thrise of the partion_number of same number,
How and why?? 

And some having rows and other Partition row of same number does not have rows, but index column saying 0,1 and 2.

Can anyone explain please.................

Ramesh Chandler.]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>I am created partitioned table using datetime,<br />
I defined range for month upto one year &#8217;2011-01-01&#8242;,&#8217;2011-02-1&#8242;,&#8217;2011-03-1&#8242;<br />
And I created a Partitioned Table.</p>
<p>when I Looking into sys.partitions</p>
<p>SELECT      partition_id, object_id, partition_number, rows<br />
FROM        sys.partitions<br />
WHERE       object_id = OBJECT_ID(&#8216;partitionedtablet&#8217;)<br />
order by partition_Number</p>
<p>______________________________________________________________</p>
<p>*** I am getting twise or thrise of the partion_number of same number,<br />
How and why?? </p>
<p>And some having rows and other Partition row of same number does not have rows, but index column saying 0,1 and 2.</p>
<p>Can anyone explain please&#8230;&#8230;&#8230;&#8230;&#8230;..</p>
<p>Ramesh Chandler.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cornasdf</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-284512</link>
		<dc:creator><![CDATA[cornasdf]]></dc:creator>
		<pubDate>Mon, 14 May 2012 11:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-284512</guid>
		<description><![CDATA[Thanks for this excellent article (and several others). I have used this as a base for a walthrough on backup and restores of partitioned databases.  http://cornasdf.blogspot.com/2012/05/basic-walkthrough-of-partial-backup-and.html]]></description>
		<content:encoded><![CDATA[<p>Thanks for this excellent article (and several others). I have used this as a base for a walthrough on backup and restores of partitioned databases.  <a href="http://cornasdf.blogspot.com/2012/05/basic-walkthrough-of-partial-backup-and.html" rel="nofollow">http://cornasdf.blogspot.com/2012/05/basic-walkthrough-of-partial-backup-and.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alia</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-280926</link>
		<dc:creator><![CDATA[Alia]]></dc:creator>
		<pubDate>Mon, 30 Apr 2012 20:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-280926</guid>
		<description><![CDATA[Hi Dave,
How Can I insert records on daily basis in a partitioned table.
A data warehouse table which I update on daily basis now I created five partition on it one for each year and the last partition is empty.
I need to know the best practice in this regard.
Alia]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,<br />
How Can I insert records on daily basis in a partitioned table.<br />
A data warehouse table which I update on daily basis now I created five partition on it one for each year and the last partition is empty.<br />
I need to know the best practice in this regard.<br />
Alia</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivekananda Swamy</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-275125</link>
		<dc:creator><![CDATA[Vivekananda Swamy]]></dc:creator>
		<pubDate>Wed, 11 Apr 2012 15:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-275125</guid>
		<description><![CDATA[Hi Dev,
We have 3 years of data in more than 30 tables based on Date partition. I mean we are creating one partion for each business day. Now we want the purge the data which is 18 months older. How do I efficiently purge the data ? Can you please help us on it in SQL Server 2005.]]></description>
		<content:encoded><![CDATA[<p>Hi Dev,<br />
We have 3 years of data in more than 30 tables based on Date partition. I mean we are creating one partion for each business day. Now we want the purge the data which is 18 months older. How do I efficiently purge the data ? Can you please help us on it in SQL Server 2005.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sampong Kwame</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-258639</link>
		<dc:creator><![CDATA[Sampong Kwame]]></dc:creator>
		<pubDate>Fri, 02 Mar 2012 21:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-258639</guid>
		<description><![CDATA[I am new to using SQL server but I know with your help I will understand it fast. Please can you send me something because am a beginner and I really want to learn. Thank you.]]></description>
		<content:encoded><![CDATA[<p>I am new to using SQL server but I know with your help I will understand it fast. Please can you send me something because am a beginner and I really want to learn. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Advantages of Partitioning &#8211; Quiz &#8211; Puzzle &#8211; 30 of 31 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-245879</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Advantages of Partitioning &#8211; Quiz &#8211; Puzzle &#8211; 30 of 31 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Tue, 31 Jan 2012 01:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-245879</guid>
		<description><![CDATA[[...] Server Interview Questions and Answers ISBN: 1466405643 Page#168-170 Database Table Partitioning Tutorial – How to Horizontal Partition Database Table White Paper – Partitioned Table and Index Strategies Using SQL Server [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Server Interview Questions and Answers ISBN: 1466405643 Page#168-170 Database Table Partitioning Tutorial – How to Horizontal Partition Database Table White Paper – Partitioned Table and Index Strategies Using SQL Server [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sivakumar</title>
		<link>http://blog.sqlauthority.com/2008/01/25/sql-server-2005-database-table-partitioning-tutorial-how-to-horizontal-partition-database-table/#comment-226803</link>
		<dc:creator><![CDATA[Sivakumar]]></dc:creator>
		<pubDate>Tue, 27 Dec 2011 15:06:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=485#comment-226803</guid>
		<description><![CDATA[It is very helpful and useful guide for beginners.  Excellent Job.

Thanks Pinal. Keep it up.]]></description>
		<content:encoded><![CDATA[<p>It is very helpful and useful guide for beginners.  Excellent Job.</p>
<p>Thanks Pinal. Keep it up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
