I need to change one SQLServer7 table's field datatype from float to varchar (or another datatype that will accept alphanumeric data).
Sounded simple, but I've spent the whole day fixing the DB after the conversion changed the last significant digits of integer data to zeros. I set the field length to 10 when the longest integer of the float datatype was 7 digits and no decimals were involved. However, the float precision was set at 53, so I wonder if there's some intermediate step I need to take.
Now that I've got the DB repaired, I need to take another whack at converting the field's datatype WITHOUT corrupting the DB. Anybody have any hints or cautions?
Thanks!
Sounded simple, but I've spent the whole day fixing the DB after the conversion changed the last significant digits of integer data to zeros. I set the field length to 10 when the longest integer of the float datatype was 7 digits and no decimals were involved. However, the float precision was set at 53, so I wonder if there's some intermediate step I need to take.
Now that I've got the DB repaired, I need to take another whack at converting the field's datatype WITHOUT corrupting the DB. Anybody have any hints or cautions?
Thanks!