If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > Convert varchar to float, decimal

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-10-12, 00:15
rohanpdsouza rohanpdsouza is offline
Registered User
 
Join Date: Jan 2012
Posts: 1
Convert varchar to float, decimal

Hello,

I have a field in my database that is stored as varchar. The values are usually contain a decimal, and should have really been a float or decimal. In order for me to do analytics in my BI environment, I need to convert this to a float or decimal.
eg of values.
10.00
20.00
0.00
15.00
or could be missing

when I use cast(value as float) or cast(value as decimal(9,2)) or convert(float, value) I get an error


Msg 8114, Level 16, State 5, Line 2
Error converting data type varchar to numeric.


any help will be greatly appreciated.

Thanks,
Reply With Quote
  #2 (permalink)  
Old 01-10-12, 04:31
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,280
Try this:
Code:
SELECT id, aColumn, 
	CASE WHEN ISNUMERIC(aColumn) = 1
		THEN CAST(aColumn AS FLOAT) 
		ELSE NULL 
	END as aFloat
FROM #DaTable
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
  #3 (permalink)  
Old 01-10-12, 10:39
MCrowley MCrowley is offline
Wage drone 24601
 
Join Date: Jan 2003
Location: Massachusetts
Posts: 4,899
You probably have a few rogue characters running around. Here is an example of how the ISNUMERIC function can trip you up...
Code:
select convert(float, '$10.00')
select isnumeric ('$10.00')
ISNUMERIC will return true on a value that can be converted to some numeric format, which includes money, and scientific notation (I'm looking at you, Excel).
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On