Script table as - ALTER TO is greyed out - SQL SERVER 2005 and sql server 2008. Is there any way to enable this>? or do we still write the alter command to alter any table?
It seems ALTER using right click on the object is only applicable to SPs and functions
ALTER PROCEDURE
is a useful thing to do. Contrast this with a table, where theALTER
may beADD
ing a column or constraint,ALTER
ing a column,DROP
ing a column or constraint, etc. What is it going to usefully put in the scriptedALTER TABLE
command, beyond the wordsALTER TABLE
and the table name? – Damien_The_Unbeliever