vote up 0 vote down star

What command would I execute to safely change (i.e. from int to bigint) a replicated column's data type in SQL Server 2005?

The column is not a key. There is a non-clustered index on the column.

flag

1 Answer

vote up 1 vote down check
ALTER TABLE MyTable 
    ALTER COLUMN myIntCol bigint

From BOL:

By default, the following schema changes made at a Publisher running SQL Server are replicated to all SQL Server Subscribers:

  • ALTER TABLE
  • ALTER VIEW
  • ALTER PROCEDURE
  • ALTER FUNCTION
  • ALTER TRIGGER
link|flag
Sorry I forgot to add that there is an index on the column, and the command above is producing an error when executed. Would I have to remove the index? – triniMahn Apr 30 at 16:00
ah!, yes you would. – Mitch Wheat Apr 30 at 16:13
ok, great! Thanks! – triniMahn Apr 30 at 16:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.