August 13, 2008 at 8:14 am
Is it possible to alter multiple columns in one call .vs doing this:
ALTER TABLE dbo.coChargeCodes
ALTER COLUMN Description nvarchar(255) NULL
ALTER TABLE dbo.coChargeCodes
ALTER COLUMN AlternateDescription nvarchar(255) NULL
ALTER TABLE dbo.coChargeCodes
ALTER COLUMN UB92Description nvarchar(255) NULL
August 13, 2008 at 8:18 am
Nope. You need an Alter Table for every Alter Column. It would be a nice feature to have though.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
August 13, 2008 at 8:26 am
can only be done for adding columns as far as i know
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" 😉
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply