|
ALTER TABLE
Change the definition of the table by changing, adding, removing columns and constraints, or by enabling or disabling constraints and triggers.
ALTER COLUMN
Specifies to change the given column. If the compatibility level is 65 or less, ALTER COLUMN will not be allowed. For more information, see sp_dbcmptlevel.
The column to be changed cannot be:
Columns with data type text, image, ntext, or timestamp.
It is written in the online help, which means that the Alter Table method cannot change the text, image, ntext or timestamp column |
|