Alter Column on Large Table 40+ million rows - Timeout Error

smcleodsmcleod Posts: 5
edited November 30, 2009 9:51AM in SQL Compare Previous Versions
I'm trying to alter a decimal column from (18, 1) to (18, 2), and in order to do this the SQL Compare 7 tool is producing a script that first drop all indexes and statistics on the current table, creates a temp table, copies over data from current to temp table, drops current, and lastly renames temp table to original.

Pretty straight forward, except for the fact that it times out on the first part when trying to drop the indexes on the current/original table. The database is set to Simple Recovery mode, so I'm assuming limited logging is going on.

Is there a way to increase the timeout period??

Database size is approx 100GB in size, and there is 700GB free space on hard drive.

The error received is below:


The following error message was returned from the SQL Server:

[-2] Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

The following SQL command caused the error:

ALTER TABLE [dbo].[OrdersSnapshot] DROP CONSTRAINT [PK_OrdersSnapshot]

The following messages were returned from the SQL Server:

[0] Dropping constraints from [dbo].[OrdersSnapshot]

Comments

  • Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Hi Scott,

    The query timeout of SQL Compare is hard-coded at ten minutes.

    I think that you may have to manually change the column datatype in the target database in SSMS before running the synchronization. Of course the operation could also timeout in SSMS, too.
  • We just did the change in SQL Packager, and modified the command timeout in the generated C# code, it ran successfully then!? :)
Sign In or Register to comment.