Can I add a column which is I specify as NOT NULL,I don\'t want to specify the DEFAULT value but MS-SQL 2005 says:
ALTER TABLE only allows columns to
I use this approach to insert NOT NULL column without default value
ALTER TABLE [Table] ADD [Column] INT NULL GO UPDATE [Table] SET [Column] = ALTER TABLE [Table] ALTER COLUMN [Column] INT NOT NULL