In SQL Server, I have a new column on a table:

ALTER TABLE t_tableName 
    ADD newColumn NOT NULL

This fails because I specify NOT NULL without specifying a default constraint. The table should not have a default constraint.

To get around this, I could create the table with the default constraint and then remove it.

However, there doesn't appear to be any way to specify that the default constraint should be named as part of this statement, so my only way to get rid of it is to have a stored procedure which looks it up in the sys.default_constraints table.

This is a bit messy/verbose for an operation which is likely to happen a lot. Does anyone have any better solutions for this?

link|improve this question

78% accept rate
Thanks very much for swift responses, I'm glad this is possible :) – GlennS Sep 22 '10 at 14:34
feedback

3 Answers

up vote 7 down vote accepted

This should work:

ALTER TABLE t_tableName 
    ADD newColumn VARCHAR(50)
    CONSTRAINT YourContraintName DEFAULT '' NOT NULL
link|improve this answer
@Mitch: I just tested this on both 2005 and 2008 to make sure and it works as written. – Joe Stefanelli Sep 22 '10 at 14:10
aplogies. I didn't know that syntax worked. – Mitch Wheat Sep 22 '10 at 14:12
feedback
ALTER TABLE t_tableName 
    ADD newColumn int NOT NULL
        CONSTRAINT DF_defaultvalue DEFAULT (1)
link|improve this answer
feedback

I could create the column without the NOT NULL, run an update on the existing date, then alter the column to have the NOT NULL. I am concerned about the performance implications of this, for example if it were on a multi-million row table, so this seems less than ideal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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