alter table Table1
alter column SSN varchar(9);
You can run a quick test to make sure it saves the data.
create table
ssl int
)
insert into
insert into
insert into
insert into
select * from
alter table
alter column ssl varchar(9)
select * from
And there are never any problems with backups before doing such things. Even a quick insert into another table works if it is not a huge amount of data.
source
share