Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could we change attribute's data type when the database table has record in SQL?

I am using Microsoft Management Studio 2008. The error that i am getting is: ** Error converting data type nvarchar to float. **

share|improve this question
Change table column data type? if so what data type? – bonCodigo Jan 5 at 18:44

3 Answers

up vote 1 down vote accepted

In short: It is possible with alter column command ONLY if the altered data type is compatible with newly modified one. In addition, it is recommended to be done with transaction.

For example: You may change a column from a varchar(50) to a nvarchar(200), with a script below.

alter table TableName 
alter column ColumnName nvarchar(200)

Edit: Regarding your posted error while altering column type.

** Error converting data type nvarchar to float. **

One way would be to create a new column, and convert all good (convertible and compatible) records to new column. After that you may wanna to clean-up the bad records that do not convert, delete old column and re-name your newly added and populated column back to the original name. Important: use testing environment for all this manipulations first. Usually, playing with productions tables turns to be a bad practice to screw things up.

References to look for more discussions on similar SE posts:

share|improve this answer
it is not possible by this way. The error message is, Error converting data type nvarchar to float. – Yilmaz Paçariz Jan 5 at 18:48
Read my answer carefully again, i said that if data types are compatible. Of course it will not work if you try alter type double to become int. – ElYusubov Jan 5 at 18:49
1  
thanks dude.... – Yilmaz Paçariz Jan 5 at 18:52
Added a suggestion what to do when having conversion error. Hope that helps. – ElYusubov Jan 5 at 19:30
@YilmazPaçariz, can you vote or mark this answer? – ElYusubov Feb 8 at 15:24

Obviously, there is no default conversion to your new datatype. One solution could be to create a second column with the requested type, and write your own conversion function. Once this done, delete the first column and rename the second one with the same name.

share|improve this answer

Things to consider: How big your table is. You then use the alter table syntax. We do not know what data type you want to change, so just for e.g.

alter column:

Alter Table [yourTable] Alter column [yourColumn] varchar(15) 
  • You could also try to add a new column and then update that column using your old column. Drop the old column. Rename the new column. This is a safe better way, becasue at times the data that you hold might not react well to the new data type...

A post to look into for ideas: Change column types in a huge table, How to change column datatype in SQL Server database without losing data

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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