vote up 3 vote down star
1

How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?

flag

8 Answers

vote up 8 vote down check
ALTER TABLE {TABLENAME} 
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL} 
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}
link|flag
vote up 8 vote down
ALTER TABLE Protocols
ADD ProtocolTypeID int NOT NULL DEFAULT(1)
GO
link|flag
vote up 0 vote down

Mainly using SQL Server Enterprise Manager - it's simple. :D

link|flag
vote up 0 vote down

Beware when the column you are adding has a NOT NULL constraint, yet does not have a DEFAULT constraint (value). The ALTER TABLE statement will fail in that case if the table has any rows in it. The solution is to either remove the NOT NULL constraint from the new column, or provide a DEFAULT constraint for it.

link|flag
vote up 0 vote down

i have already added a column in the table and now want to get the data in that column from another table in another database. can i do this? if yes then how?

link|flag
I recommend that you write a separate question for specific problem. – Mathias Mar 24 at 10:43
A 'your' before 'specific' was missing in the comment above. – Mathias Mar 24 at 10:44
vote up 0 vote down
ALTER TABLE ADD ColumnName Options

Here is a link that has all of the alter table syntax: http://doc.ddart.net/mssql/sql70/aa-az_5.htm

EDIT: Accidentally hit submit. And markdown ate my brackets.

link|flag
vote up 0 vote down
ALTER TABLE <table name> 
ADD <new column name> <data type> NOT NULL
GO
ALTER TABLE <table name> 
ADD CONSTRAINT <constraint name> DEFAULT <default value> FOR <new column name>
GO
link|flag
vote up -2 vote down

That one has to work.

UPDATE dbo.YourTable 
SET dbo.YourTable.NewColumn = SourceServer.SourceDB.dbo.SourceTable.Column
FROM dbo.YourTable as y
    INNER JOIN SourceServer.SourceDB.dbo.SourceTable.Column as s 
    ON (y.ColumnID = s.ColumnID);
GO

Shure you have to set up a linked server if your source database is on the another SQL Server instance. And possible you need unique constraint or primery key on ColumnID.

More info here: http://msdn.microsoft.com/en-us/library/ms177523.aspx

link|flag
This doesn't answer the original question. – Mathias Mar 24 at 10:45
-1: No relation at all, as far as I can see. – John Saunders Jul 31 at 3:47
I can't see how you intend to add both a new column and a default value constraint to that new column with an UPDATE statement. This is a DML (Data Manipulation Language) code while a DSL (Data Structure Language) is needed. Sorry! – Will the Thrill Sep 16 at 12:30

Your Answer

Get an OpenID
or

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