<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SQLPartitionMgmt Work Item Rss Feed</title><link>http://www.codeplex.com/SQLPartitionMgmt/WorkItem/List.aspx</link><description>SQLPartitionMgmt Work Item Rss Description</description><item><title>Created Issue: bug in exception management [9870]</title><link>http://sqlpartitionmgmt.codeplex.com/workitem/9870</link><description>A new bug was introduced in ManagePartition.exe version 3.0.&lt;br /&gt;&lt;br /&gt;The bug is located in the Run&amp;#40;&amp;#41; method exceptionn handler at line number 235 &lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            catch &amp;#40;Exception e&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                sc.Disconnect&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                sc &amp;#61; null&amp;#59;&lt;br /&gt;                Console.WriteLine&amp;#40;e&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            sc.Disconnect&amp;#40;&amp;#41;&amp;#59; &lt;br /&gt;            sc &amp;#61; null&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;when an exception occurs, the exception handler sets sc &amp;#61; null&lt;br /&gt;then the sc.Disconnect&amp;#40;&amp;#41;&amp;#59; following the catch block fails with an &amp;#38;quot&amp;#59;Object reference not set to an instance of an object&amp;#38;quot&amp;#59;, that is caught in the Main&amp;#40;&amp;#41; exception handler level, instead of the real exception.&lt;br /&gt;&lt;br /&gt;in version 2.0 a there was a throw at the end of the catch block.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;            catch &amp;#40;Exception ex&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                sc.Disconnect&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                sc &amp;#61; null&amp;#59; &lt;br /&gt;                throw ex&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            sc.Disconnect&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            sc &amp;#61; null&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;</description><author>smurru</author><pubDate>Thu, 24 Jan 2013 10:12:27 GMT</pubDate><guid isPermaLink="false">Created Issue: bug in exception management [9870] 20130124101227A</guid></item><item><title>Closed Issue: Invalid Constraints when server not using US format dates [5782]</title><link>http://sqlpartitionmgmt.codeplex.com/workitem/5782</link><description>&amp;#60;p&amp;#62;Hello,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Love this util. But I had a major issue with it. Being outside the US of A, I don&amp;#38;&amp;#35;39&amp;#59;t use MM&amp;#47;dd&amp;#47;YYYY format dates.  Because I run into a lot of US dates format&amp;#47;converting problems I set all my SQL servers to use ISO like date format, yyyy-MM-dd. Also avoids user confusion with reports..&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I found that your util can create invalid constraints on the slide out tables &amp;#40;and presumable will do the same on the staging&amp;#41; as it inserts the constraints in American style formatted dates.  This causes the util to create a slide out table that can&amp;#38;&amp;#35;39&amp;#59;t have partition data switched to. I&amp;#38;&amp;#35;39&amp;#59;ve updated the  CreateStgPartitionCheck&amp;#40;&amp;#41; in the source code so that if the partition column is SqlDateType.DateTime &amp;#40;The only sql data type I use for partitioning..&amp;#41; then it will properly format the string and works ok for me now.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;So now the construct for the min value predicate looks a little like this&amp;#58;  &amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#47;&amp;#47; Construct the minimum value predicate string in the check constraint definition&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;            if &amp;#40;partitionNumber &amp;#38;gt&amp;#59; 1&amp;#41;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                &amp;#47;&amp;#47; 2010-01-22 Added By Yussuf Khan so it can cope with non US format DateTime formats &amp;#40;I don&amp;#38;&amp;#35;39&amp;#59;t use other datatypes for my partition columns so only coding datetime&amp;#41;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                if &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.DateTime&amp;#41;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                &amp;#123;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    &amp;#47;&amp;#47;now it seems for datetime it will return this in US format, dd&amp;#47;MM&amp;#47;yyyy&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    &amp;#47;&amp;#47;need to convert to more universal standard, yyyy-MM-dd , which SQL server detects ok no matter what the locale &amp;#40;well in my experience anyways&amp;#33;&amp;#41;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    dtDateBuilder &amp;#61; &amp;#40;DateTime&amp;#41;pf.RangeValues&amp;#91;partitionNumber - 2&amp;#93;&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    strDateBuilder &amp;#61; dtDateBuilder.ToString&amp;#40;&amp;#38;quot&amp;#59;yyyy-MM-dd hh&amp;#58;mm&amp;#58;ss.fff&amp;#38;quot&amp;#59;&amp;#41;&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    leftBoundary &amp;#61; partitionColumnName &amp;#43; &amp;#40;&amp;#40;pf.RangeType &amp;#61;&amp;#61; RangeType.Right&amp;#41; &amp;#63; &amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#61;&amp;#38;quot&amp;#59; &amp;#58; &amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#38;quot&amp;#59;&amp;#41; &amp;#43; &amp;#38;quot&amp;#59;N&amp;#38;&amp;#35;39&amp;#59;&amp;#38;quot&amp;#59; &amp;#43; strDateBuilder &amp;#43; &amp;#38;quot&amp;#59;&amp;#38;&amp;#35;39&amp;#59;&amp;#38;quot&amp;#59;&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                &amp;#125;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                else if &amp;#40;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.Date&amp;#41; &amp;#124;&amp;#124;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                    &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.Time&amp;#41; &amp;#124;&amp;#124;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I&amp;#38;&amp;#35;39&amp;#59;ve done a similiar thing to the Max value string constraint builder too. I&amp;#38;&amp;#35;39&amp;#59;m not really a .Net developer, and I&amp;#38;&amp;#35;39&amp;#59;ve only tested a couple of times. But this does seem to fix. Any chance you can incorporate something like this fully&amp;#63;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&lt;br /&gt;Comments: &lt;p&gt;Fixed in Version 3.0&lt;/p&gt;</description><author>Stuarto</author><pubDate>Thu, 29 Nov 2012 04:46:22 GMT</pubDate><guid isPermaLink="false">Closed Issue: Invalid Constraints when server not using US format dates [5782] 20121129044622A</guid></item><item><title>Closed Issue: compression on partitions seems to be ignored [5338]</title><link>http://sqlpartitionmgmt.codeplex.com/workitem/5338</link><description>&amp;#60;p&amp;#62;Scripting a partitioned temp&amp;#47;staging table does not include reference to source table&amp;#38;&amp;#35;39&amp;#59;s level of page level compression.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&lt;br /&gt;Comments: &lt;p&gt;I verified that this is not a problem in Partition Management Utility version 2.  If you are continuing to find issues in compression being set correctly, please send me a script of original objects and the script of objects created by the tool.&lt;/p&gt;</description><author>Stuarto</author><pubDate>Wed, 21 Nov 2012 22:27:46 GMT</pubDate><guid isPermaLink="false">Closed Issue: compression on partitions seems to be ignored [5338] 20121121102746P</guid></item><item><title>Closed Issue: Partition functions with a '.' in its name are not handled properly (and maybe so do the partition schemes). [5337]</title><link>http://sqlpartitionmgmt.codeplex.com/workitem/5337</link><description>&amp;#60;p&amp;#62;You can create a partition function with CREATE PARTITION FUNCTION &amp;#91;Person.PF_Address&amp;#93;&amp;#40;int&amp;#41; RANGE LEFT FOR VALUES &amp;#40;10000, 20000, 30000&amp;#41;&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;This function will not be handled properly due to the dot &amp;#40;&amp;#38;&amp;#35;39&amp;#59;.&amp;#38;&amp;#35;39&amp;#59;&amp;#41; in the name. It should work if you quote the name of the partition function with &amp;#38;&amp;#35;39&amp;#59;&amp;#91;&amp;#38;&amp;#35;39&amp;#59; and &amp;#38;&amp;#35;39&amp;#59;&amp;#93;&amp;#38;&amp;#35;39&amp;#59;. Maybe the same error will rise with a partition scheme with a dot inside the name.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Workaround&amp;#58; Changing the name of the partition function &amp;#40;e.g. replace all &amp;#38;&amp;#35;39&amp;#59;.&amp;#38;&amp;#35;39&amp;#59; with &amp;#38;&amp;#35;39&amp;#59;_&amp;#38;&amp;#35;39&amp;#59;&amp;#41;.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&lt;br /&gt;Comments: &lt;p&gt;I verified that this is not a problem with Partition Management Utility Version 2.   Partition functions and schemes with &amp;#34;.&amp;#34; characters are handled fine. If you have a continuing problem please send specific script with repro details.&lt;/p&gt;</description><author>Stuarto</author><pubDate>Wed, 21 Nov 2012 22:26:07 GMT</pubDate><guid isPermaLink="false">Closed Issue: Partition functions with a '.' in its name are not handled properly (and maybe so do the partition schemes). [5337] 20121121102607P</guid></item><item><title>Commented Issue: Invalid Constraints when server not using US format dates [5782]</title><link>http://sqlpartitionmgmt.codeplex.com/WorkItem/View.aspx?WorkItemId=5782</link><description>Hello,&lt;br /&gt;&lt;br /&gt;Love this util. But I had a major issue with it. Being outside the US of A, I don&amp;#39;t use MM&amp;#47;dd&amp;#47;YYYY format dates.  Because I run into a lot of US dates format&amp;#47;converting problems I set all my SQL servers to use ISO like date format, yyyy-MM-dd. Also avoids user confusion with reports..&lt;br /&gt;&lt;br /&gt;I found that your util can create invalid constraints on the slide out tables &amp;#40;and presumable will do the same on the staging&amp;#41; as it inserts the constraints in American style formatted dates.  This causes the util to create a slide out table that can&amp;#39;t have partition data switched to. I&amp;#39;ve updated the  CreateStgPartitionCheck&amp;#40;&amp;#41; in the source code so that if the partition column is SqlDateType.DateTime &amp;#40;The only sql data type I use for partitioning..&amp;#41; then it will properly format the string and works ok for me now.&lt;br /&gt;&lt;br /&gt;So now the construct for the min value predicate looks a little like this&amp;#58;  &lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47; Construct the minimum value predicate string in the check constraint definition&lt;br /&gt;            if &amp;#40;partitionNumber &amp;#62; 1&amp;#41;&lt;br /&gt;                &amp;#47;&amp;#47; 2010-01-22 Added By Yussuf Khan so it can cope with non US format DateTime formats &amp;#40;I don&amp;#39;t use other datatypes for my partition columns so only coding datetime&amp;#41;&lt;br /&gt;                if &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.DateTime&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#47;&amp;#47;now it seems for datetime it will return this in US format, dd&amp;#47;MM&amp;#47;yyyy&lt;br /&gt;                    &amp;#47;&amp;#47;need to convert to more universal standard, yyyy-MM-dd , which SQL server detects ok no matter what the locale &amp;#40;well in my experience anyways&amp;#33;&amp;#41;&lt;br /&gt;                    dtDateBuilder &amp;#61; &amp;#40;DateTime&amp;#41;pf.RangeValues&amp;#91;partitionNumber - 2&amp;#93;&amp;#59;&lt;br /&gt;                    strDateBuilder &amp;#61; dtDateBuilder.ToString&amp;#40;&amp;#34;yyyy-MM-dd hh&amp;#58;mm&amp;#58;ss.fff&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    leftBoundary &amp;#61; partitionColumnName &amp;#43; &amp;#40;&amp;#40;pf.RangeType &amp;#61;&amp;#61; RangeType.Right&amp;#41; &amp;#63; &amp;#34;&amp;#62;&amp;#61;&amp;#34; &amp;#58; &amp;#34;&amp;#62;&amp;#34;&amp;#41; &amp;#43; &amp;#34;N&amp;#39;&amp;#34; &amp;#43; strDateBuilder &amp;#43; &amp;#34;&amp;#39;&amp;#34;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;                else if &amp;#40;&lt;br /&gt;                    &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.Date&amp;#41; &amp;#124;&amp;#124;&lt;br /&gt;                    &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.Time&amp;#41; &amp;#124;&amp;#124;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve done a similiar thing to the Max value string constraint builder too. I&amp;#39;m not really a .Net developer, and I&amp;#39;ve only tested a couple of times. But this does seem to fix. Any chance you can incorporate something like this fully&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: Stuarto ** &lt;p&gt;Thank you for the feedback.  I was surprised to see that the pf.RangeValue was not already formatted in the locale-specific formulation.  I will incorporate this change in a subsequent build after testing more completely.&lt;/p&gt;</description><author>Stuarto</author><pubDate>Wed, 27 Jan 2010 16:20:51 GMT</pubDate><guid isPermaLink="false">Commented Issue: Invalid Constraints when server not using US format dates [5782] 20100127042051P</guid></item><item><title>Created Issue: Invalid Constraints when server not using US format dates [5782]</title><link>http://sqlpartitionmgmt.codeplex.com/WorkItem/View.aspx?WorkItemId=5782</link><description>Hello,&lt;br /&gt;&lt;br /&gt;Love this util. But I had a major issue with it. Being outside the US of A, I don&amp;#39;t use MM&amp;#47;dd&amp;#47;YYYY format dates.  Because I run into a lot of US dates format&amp;#47;converting problems I set all my SQL servers to use ISO like date format, yyyy-MM-dd. Also avoids user confusion with reports..&lt;br /&gt;&lt;br /&gt;I found that your util can create invalid constraints on the slide out tables &amp;#40;and presumable will do the same on the staging&amp;#41; as it inserts the constraints in American style formatted dates.  This causes the util to create a slide out table that can&amp;#39;t have partition data switched to. I&amp;#39;ve updated the  CreateStgPartitionCheck&amp;#40;&amp;#41; in the source code so that if the partition column is SqlDateType.DateTime &amp;#40;The only sql data type I use for partitioning..&amp;#41; then it will properly format the string and works ok for me now.&lt;br /&gt;&lt;br /&gt;So now the construct for the min value predicate looks a little like this&amp;#58;  &lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47; Construct the minimum value predicate string in the check constraint definition&lt;br /&gt;            if &amp;#40;partitionNumber &amp;#62; 1&amp;#41;&lt;br /&gt;                &amp;#47;&amp;#47; 2010-01-22 Added By Yussuf Khan so it can cope with non US format DateTime formats &amp;#40;I don&amp;#39;t use other datatypes for my partition columns so only coding datetime&amp;#41;&lt;br /&gt;                if &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.DateTime&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    &amp;#47;&amp;#47;now it seems for datetime it will return this in US format, dd&amp;#47;MM&amp;#47;yyyy&lt;br /&gt;                    &amp;#47;&amp;#47;need to convert to more universal standard, yyyy-MM-dd , which SQL server detects ok no matter what the locale &amp;#40;well in my experience anyways&amp;#33;&amp;#41;&lt;br /&gt;                    dtDateBuilder &amp;#61; &amp;#40;DateTime&amp;#41;pf.RangeValues&amp;#91;partitionNumber - 2&amp;#93;&amp;#59;&lt;br /&gt;                    strDateBuilder &amp;#61; dtDateBuilder.ToString&amp;#40;&amp;#34;yyyy-MM-dd hh&amp;#58;mm&amp;#58;ss.fff&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                    leftBoundary &amp;#61; partitionColumnName &amp;#43; &amp;#40;&amp;#40;pf.RangeType &amp;#61;&amp;#61; RangeType.Right&amp;#41; &amp;#63; &amp;#34;&amp;#62;&amp;#61;&amp;#34; &amp;#58; &amp;#34;&amp;#62;&amp;#34;&amp;#41; &amp;#43; &amp;#34;N&amp;#39;&amp;#34; &amp;#43; strDateBuilder &amp;#43; &amp;#34;&amp;#39;&amp;#34;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;                else if &amp;#40;&lt;br /&gt;                    &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.Date&amp;#41; &amp;#124;&amp;#124;&lt;br /&gt;                    &amp;#40;partitionColumnType &amp;#61;&amp;#61; SqlDataType.Time&amp;#41; &amp;#124;&amp;#124;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve done a similiar thing to the Max value string constraint builder too. I&amp;#39;m not really a .Net developer, and I&amp;#39;ve only tested a couple of times. But this does seem to fix. Any chance you can incorporate something like this fully&amp;#63;&lt;br /&gt;</description><author>WeeeBob</author><pubDate>Fri, 22 Jan 2010 16:06:26 GMT</pubDate><guid isPermaLink="false">Created Issue: Invalid Constraints when server not using US format dates [5782] 20100122040626P</guid></item><item><title>Created Issue: compression on partitions seems to be ignored [5338]</title><link>http://sqlpartitionmgmt.codeplex.com/WorkItem/View.aspx?WorkItemId=5338</link><description>Scripting a partitioned temp&amp;#47;staging table does not include reference to source table&amp;#39;s level of page level compression.&lt;br /&gt;</description><author>binarymechanic</author><pubDate>Mon, 26 Oct 2009 19:11:28 GMT</pubDate><guid isPermaLink="false">Created Issue: compression on partitions seems to be ignored [5338] 20091026071128P</guid></item><item><title>Created Issue: Partition functions with a '.' in its name are not handled properly (and maybe so do the partition schemes). [5337]</title><link>http://sqlpartitionmgmt.codeplex.com/WorkItem/View.aspx?WorkItemId=5337</link><description>You can create a partition function with CREATE PARTITION FUNCTION &amp;#91;Person.PF_Address&amp;#93;&amp;#40;int&amp;#41; RANGE LEFT FOR VALUES &amp;#40;10000, 20000, 30000&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;This function will not be handled properly due to the dot &amp;#40;&amp;#39;.&amp;#39;&amp;#41; in the name. It should work if you quote the name of the partition function with &amp;#39;&amp;#91;&amp;#39; and &amp;#39;&amp;#93;&amp;#39;. Maybe the same error will rise with a partition scheme with a dot inside the name.&lt;br /&gt;&lt;br /&gt;Workaround&amp;#58; Changing the name of the partition function &amp;#40;e.g. replace all &amp;#39;.&amp;#39; with &amp;#39;_&amp;#39;&amp;#41;.&lt;br /&gt;</description><author>MiSchroe</author><pubDate>Mon, 26 Oct 2009 17:00:49 GMT</pubDate><guid isPermaLink="false">Created Issue: Partition functions with a '.' in its name are not handled properly (and maybe so do the partition schemes). [5337] 20091026050049P</guid></item><item><title>Closed Issue: Release 1.0 known issues: index creation order; 10-min. timeout</title><link>http://www.codeplex.com/sql2005partitionmgmt/WorkItem/View.aspx?WorkItemId=3214</link><description>The following are known issues for Release 1.0. I&amp;#39;ve been informed by the developer&amp;#40;s&amp;#41; that these issues will be remedied with the next release, slated for 2008 Q4. The next release will also provide support for SQL Server 2008.&lt;br /&gt;&lt;br /&gt;&amp;#42; There is no order enforced when building indexes, whereas it would be advantageous to create clustered indexes before creating nonclustered indexes on a non-empty table.&lt;br /&gt;&lt;br /&gt;&amp;#42; Issued statements are given 10 minutes to run before failing with a time-out error. For example, if an individual index requires more than 10 minutes to create, an error will occur at the 10-minute mark. The remedy is to explicitly set the ServerConnection.StatementTimeout property to an appropriate value higher than the default value&amp;#59; the default value for this property is 600 &amp;#40;seconds, or 10 minutes&amp;#41;.&lt;br /&gt;&lt;br /&gt;Thanks to the developer&amp;#40;s&amp;#41; for such a valuable utility.&lt;br /&gt;Comments: Fixed with Release 2.0</description><author>Stuarto</author><pubDate>Mon, 23 Feb 2009 20:25:48 GMT</pubDate><guid isPermaLink="false">Closed Issue: Release 1.0 known issues: index creation order; 10-min. timeout 20090223082548P</guid></item><item><title>Created Issue: Release 1.0 known issues: index creation order; 10-min. timeout</title><link>http://www.codeplex.com/sql2005partitionmgmt/WorkItem/View.aspx?WorkItemId=3214</link><description>The following are known issues for Release 1.0. I&amp;#39;ve been informed by the developer&amp;#40;s&amp;#41; that these issues will be remedied with the next release, slated for 2008 Q4. The next release will also provide support for SQL Server 2008.&lt;br /&gt;&lt;br /&gt;&amp;#42; There is no order enforced when building indexes, whereas it would be advantageous to create clustered indexes before creating nonclustered indexes on a non-empty table.&lt;br /&gt;&lt;br /&gt;&amp;#42; Issued statements are given 10 minutes to run before failing with a time-out error. For example, if an individual index requires more than 10 minutes to create, an error will occur at the 10-minute mark. The remedy is to explicitly set the ServerConnection.StatementTimeout property to an appropriate value higher than the default value&amp;#59; the default value for this property is 600 &amp;#40;seconds, or 10 minutes&amp;#41;.&lt;br /&gt;&lt;br /&gt;Thanks to the developer&amp;#40;s&amp;#41; for such a valuable utility.&lt;br /&gt;</description><author>TJY</author><pubDate>Thu, 09 Oct 2008 03:03:46 GMT</pubDate><guid isPermaLink="false">Created Issue: Release 1.0 known issues: index creation order; 10-min. timeout 20081009030346A</guid></item></channel></rss>