<?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; Introduction to Partitioning</title>
	<atom:link href="http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Wed, 22 May 2013 19:03:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: stanleyjohns</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-408135</link>
		<dc:creator><![CDATA[stanleyjohns]]></dc:creator>
		<pubDate>Tue, 15 Jan 2013 19:49:09 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-408135</guid>
		<description><![CDATA[In SQL server the two types of vertical partitioning that are present are normalization and row splitting. Normalization is a standard procedure used in RDBMSs. Row splitting is where the number of columns in one table are split into different tables and connected by their primary key. This improves performances by decreasing the amount of data scanned during querying.]]></description>
		<content:encoded><![CDATA[<p>In SQL server the two types of vertical partitioning that are present are normalization and row splitting. Normalization is a standard procedure used in RDBMSs. Row splitting is where the number of columns in one table are split into different tables and connected by their primary key. This improves performances by decreasing the amount of data scanned during querying.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahdis</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-305621</link>
		<dc:creator><![CDATA[mahdis]]></dc:creator>
		<pubDate>Mon, 25 Jun 2012 12:48:06 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-305621</guid>
		<description><![CDATA[Hi Pinal 
Could you please help me?

I have a test table .it has a olumn named PersonelImage,and it keeps images of all the personel.because of the larg number of records in table and the large size of the image files,i want to use partitioning and keep the images in another drive.
Is it true to use vertical partitioning?
I create a new filegroup called image and placed it in another drive,but i dont know how to create a vertical partition?!

I know the usage of horizental partitioning and the script for creating it but not about vertical partitioning.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal<br />
Could you please help me?</p>
<p>I have a test table .it has a olumn named PersonelImage,and it keeps images of all the personel.because of the larg number of records in table and the large size of the image files,i want to use partitioning and keep the images in another drive.<br />
Is it true to use vertical partitioning?<br />
I create a new filegroup called image and placed it in another drive,but i dont know how to create a vertical partition?!</p>
<p>I know the usage of horizental partitioning and the script for creating it but not about vertical partitioning.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woin</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-209549</link>
		<dc:creator><![CDATA[Woin]]></dc:creator>
		<pubDate>Fri, 02 Dec 2011 19:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-209549</guid>
		<description><![CDATA[Is there enabling disabling native partitioning in SQL Server 2005? I have seen in tables property to set &quot;Table is partitioned&quot; to true or false. However, this is inactive, how can we change this configuration?

Thank you
Woin]]></description>
		<content:encoded><![CDATA[<p>Is there enabling disabling native partitioning in SQL Server 2005? I have seen in tables property to set &#8220;Table is partitioned&#8221; to true or false. However, this is inactive, how can we change this configuration?</p>
<p>Thank you<br />
Woin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-202845</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 23 Nov 2011 10:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-202845</guid>
		<description><![CDATA[I think &quot;different partition can be on different hard drive disk to &quot; should be &quot;different filegroups can be on different hard drive disk&quot;]]></description>
		<content:encoded><![CDATA[<p>I think &#8220;different partition can be on different hard drive disk to &#8221; should be &#8220;different filegroups can be on different hard drive disk&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: enrod</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-201971</link>
		<dc:creator><![CDATA[enrod]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 06:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-201971</guid>
		<description><![CDATA[&quot;Different ranges can be on different partitions, different partition can be on different filegroups, and different partition can be on different hard drive disk to improve performance.&quot;

Hi Dave, can you answer if there is any mistake in this sentence?]]></description>
		<content:encoded><![CDATA[<p>&#8220;Different ranges can be on different partitions, different partition can be on different filegroups, and different partition can be on different hard drive disk to improve performance.&#8221;</p>
<p>Hi Dave, can you answer if there is any mistake in this sentence?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sanjeev kumar</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-125221</link>
		<dc:creator><![CDATA[sanjeev kumar]]></dc:creator>
		<pubDate>Sun, 27 Mar 2011 10:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-125221</guid>
		<description><![CDATA[plz my help............................]]></description>
		<content:encoded><![CDATA[<p>plz my help&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-107302</link>
		<dc:creator><![CDATA[Manish]]></dc:creator>
		<pubDate>Wed, 22 Dec 2010 10:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-107302</guid>
		<description><![CDATA[It is possible to create patition  on selected table which contains hugh data, if yes then how it is possible ??]]></description>
		<content:encoded><![CDATA[<p>It is possible to create patition  on selected table which contains hugh data, if yes then how it is possible ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: piyush sachan</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-97309</link>
		<dc:creator><![CDATA[piyush sachan]]></dc:creator>
		<pubDate>Tue, 02 Nov 2010 06:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-97309</guid>
		<description><![CDATA[plz provide me code for vertical partitioning of table]]></description>
		<content:encoded><![CDATA[<p>plz provide me code for vertical partitioning of table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarun</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-65421</link>
		<dc:creator><![CDATA[Tarun]]></dc:creator>
		<pubDate>Mon, 19 Apr 2010 06:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-65421</guid>
		<description><![CDATA[Hi Pinal,

Does SQL Server supports vertical partitioning??]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Does SQL Server supports vertical partitioning??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-58949</link>
		<dc:creator><![CDATA[Richard]]></dc:creator>
		<pubDate>Wed, 23 Dec 2009 16:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-58949</guid>
		<description><![CDATA[Hi Pinal,

I&#039;m facing problems that alex and Diana had (the very bottom two comments). Could you please answer those questions for me? 

Thanks a lot.

Richard]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I&#8217;m facing problems that alex and Diana had (the very bottom two comments). Could you please answer those questions for me? </p>
<p>Thanks a lot.</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diana</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-53527</link>
		<dc:creator><![CDATA[Diana]]></dc:creator>
		<pubDate>Tue, 07 Jul 2009 19:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-53527</guid>
		<description><![CDATA[Is it possible to partition a table that already exists?  I have a table which is 1/2 terabyte and would like to partition by year, but the table already exists.]]></description>
		<content:encoded><![CDATA[<p>Is it possible to partition a table that already exists?  I have a table which is 1/2 terabyte and would like to partition by year, but the table already exists.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alex</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-53357</link>
		<dc:creator><![CDATA[alex]]></dc:creator>
		<pubDate>Tue, 30 Jun 2009 14:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-53357</guid>
		<description><![CDATA[Hi Pinal,
Can you tell me please if partitioning can help with performance when data is stored on SAN? I think it might be useless, because even if I have different drives, they might reside on the same LUN. What do you think?
Thanks,
Alex]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
Can you tell me please if partitioning can help with performance when data is stored on SAN? I think it might be useless, because even if I have different drives, they might reside on the same LUN. What do you think?<br />
Thanks,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerardo Melendrez</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-52783</link>
		<dc:creator><![CDATA[Gerardo Melendrez]]></dc:creator>
		<pubDate>Fri, 05 Jun 2009 23:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-52783</guid>
		<description><![CDATA[Hi,

If I want to have some sort of redundant mechanism for reporting purposes (let&#039;s say I have a transactions table that I would like to have duplicated, so transactions are going in real time to the live table, and reports are getting from that other duplicated table) for performance and scalability reasons.

Is partitioning the table a viable solution?

If not, would anybody recommend me anything?

Thanks a lot,

I will appreciate your help.

Gerardo Melendrez]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>If I want to have some sort of redundant mechanism for reporting purposes (let&#8217;s say I have a transactions table that I would like to have duplicated, so transactions are going in real time to the live table, and reports are getting from that other duplicated table) for performance and scalability reasons.</p>
<p>Is partitioning the table a viable solution?</p>
<p>If not, would anybody recommend me anything?</p>
<p>Thanks a lot,</p>
<p>I will appreciate your help.</p>
<p>Gerardo Melendrez</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samba</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-44935</link>
		<dc:creator><![CDATA[Samba]]></dc:creator>
		<pubDate>Fri, 19 Dec 2008 09:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-44935</guid>
		<description><![CDATA[hi Pinal,
Percise and good presentation...
 Below are my doubts.
1. Can we create partitioning, based on two columns?
2.Can you specify the significance of index on a partition table?
3.please let me know URLs for your subsequent articles on Partitioning]]></description>
		<content:encoded><![CDATA[<p>hi Pinal,<br />
Percise and good presentation&#8230;<br />
 Below are my doubts.<br />
1. Can we create partitioning, based on two columns?<br />
2.Can you specify the significance of index on a partition table?<br />
3.please let me know URLs for your subsequent articles on Partitioning</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chandrasekar</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-41053</link>
		<dc:creator><![CDATA[chandrasekar]]></dc:creator>
		<pubDate>Wed, 30 Jul 2008 11:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-41053</guid>
		<description><![CDATA[hi Pinal,
 i need to know the  partition types. ?which partition is better .
on what basics i should select the partition type to partitioned my table...plz guide me]]></description>
		<content:encoded><![CDATA[<p>hi Pinal,<br />
 i need to know the  partition types. ?which partition is better .<br />
on what basics i should select the partition type to partitioned my table&#8230;plz guide me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barbara</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-39249</link>
		<dc:creator><![CDATA[Barbara]]></dc:creator>
		<pubDate>Mon, 16 Jun 2008 02:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-39249</guid>
		<description><![CDATA[When do I  use vertical partitioning?

Does vertical partitioning happen one subsystem at a time, one level at a time or if the horizontal partitioning breaks down?

Thank  you.]]></description>
		<content:encoded><![CDATA[<p>When do I  use vertical partitioning?</p>
<p>Does vertical partitioning happen one subsystem at a time, one level at a time or if the horizontal partitioning breaks down?</p>
<p>Thank  you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2005 - Database Table Partitioning Tutorial - How to Horizontal Partition Database Table Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-34671</link>
		<dc:creator><![CDATA[SQL SERVER - 2005 - Database Table Partitioning Tutorial - How to Horizontal Partition Database Table Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sat, 29 Mar 2008 08:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-34671</guid>
		<description><![CDATA[[...] 25, 2008 by pinaldave    I have received call from my DBA friend who read my article SQL SERVER - 2005 - Introduction to Partitioning. He suggested that I should write simple tutorial about how to horizontal partition database table. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 25, 2008 by pinaldave    I have received call from my DBA friend who read my article SQL SERVER &#8211; 2005 &#8211; Introduction to Partitioning. He suggested that I should write simple tutorial about how to horizontal partition database table. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2005 - Database Table Partitioning Tutorial - How to Horizontal Partition Database Table Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/01/24/sql-server-2005-introduction-to-partitioning/#comment-33286</link>
		<dc:creator><![CDATA[SQL SERVER - 2005 - Database Table Partitioning Tutorial - How to Horizontal Partition Database Table Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sat, 26 Jan 2008 09:34:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=484#comment-33286</guid>
		<description><![CDATA[[...] 25, 2008 by pinaldave    I have received call from my DBA friend who read my article SQL SERVER - 2005 - Introduction to Partitioning. He suggested that I should write simple tutorial about how to horizontal partition database table. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 25, 2008 by pinaldave    I have received call from my DBA friend who read my article SQL SERVER &#8211; 2005 &#8211; Introduction to Partitioning. He suggested that I should write simple tutorial about how to horizontal partition database table. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
