vote up 1 vote down star

We have two columns in a database which is currently of type varchar(16). Thing is, it contains numbers and always will contain numbers. We therefore want to change its type to integer. But the problem is that it of course already contains data.

Is there any way we can change the type of that column from varchar to int, and not lose all those numbers that are already in there? Hopefully some sort of sql we can just run, without having to create temporary columns and create a C# program or something to do the conversion and so forth... I imagine it could be pretty easy if mssql have some function for converting strings to numbers, but I am very unstable on sql. Pretty much only work with C# and access the database through Linq2SQL.

Note: Yes, making the column a varchar in the first place was not a very good idea, but that is unfortunately the way they did it...

flag

2 Answers

vote up 3 vote down check

The only reliable way to do this will be using a temp table, but it will not be much sql:

select * into #tmp from bad_table
truncate table bad_table
alter bad_table alter column silly_column int
insert bad_table
select cast(silly_column as int), other_columns
from #tmp
drop table #tmp
link|flag
#tmp is a random name of a tmp table? – Svish Feb 23 at 14:02
Good answer - I would run this first - select cast(silly_column as int), other_columns from bad_table To make sure you don't have any conversion issues and they are all in fact ints. – brendan Feb 23 at 14:02
Of all the names I made up, you made a remark on the #tmp? – ck Feb 23 at 14:03
haha, no no, I was wondering if the # character was what made it a temp table. or if it is just any name that doesn't already exist, or how it works... – Svish Feb 23 at 14:05
A single # denotes a connection specific temp table (only available in that ocnnection) whereas a double hash ## denotes a global temp table (accessible by all connections) – ck Feb 23 at 14:07
show 4 more comments
vote up 0 vote down

Just change the datatype in management studio

(you may need to go to Tools > Options > Designers, and disable the option that prevents saving changes that re-create the table)

link|flag
wont I lose all the values then?? – Svish Feb 23 at 15:23
No. Try it on a test table if you want? – ctrlalt3nd Feb 24 at 8:14

Your Answer

Get an OpenID
or

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