I have a SQL Server table which has 625 columns created with different datatypes like int, varchar(25), decimal(18, 2), etc...
Now am interested in changing datatype of all columns to varchar(255). Instead of executing below query for all the columns one by one, is there a single SQL Server query to change datatypes of all columns in a table at one shot?
ALTER TABLE dbo.Employee
ALTER COLUMN FirstName VARCHAR(255) NOT NULL
Looking forward for your response.
VARCHAR(255)doesn't sound like a smart move; after all, those datatypes exist for a reason - why are you giving up on those datatypes? But no - there is no "magic T-SQL" to change all column to a new datatype - you'll basically have to do this column by column - or create a cursor over thesys.columnsentries for that table and execute theALTER TABLE ..statement for each column – marc_s Jun 22 '12 at 5:42