Hi
Iam trying to add new fields to my database using the Alter table statement to add them to the live server.
The statement I have come up with is this:
ALTER TABLE Products ADD ([ServerMakeID] int NOT NULL,[Asset_Number] nvarchar 250,[Contract] nvarchar 50,[IPAddress] nvarchar 50,[DTEAddress2] nvarchar 50,[RaidCard] nvarchar 50,[License] nvarchar 50)
CONSTRAINT [DF_Products_ServerMakeID] DEFAULT (0)
GO
I would be grateful for any help on if Iam going down the right path or not.
Thanks
Iam trying to add new fields to my database using the Alter table statement to add them to the live server.
The statement I have come up with is this:
ALTER TABLE Products ADD ([ServerMakeID] int NOT NULL,[Asset_Number] nvarchar 250,[Contract] nvarchar 50,[IPAddress] nvarchar 50,[DTEAddress2] nvarchar 50,[RaidCard] nvarchar 50,[License] nvarchar 50)
CONSTRAINT [DF_Products_ServerMakeID] DEFAULT (0)
GO
I would be grateful for any help on if Iam going down the right path or not.
Thanks