vote up 1 vote down star

I'm trying to extract monetary sums stored in some poorly formated xml columns (there is no schema defined for the XML column which I guess is part of the problem). I'm getting a conversion error whenever I encounter a node with 0 as its value.

Example:

select xml.value('sum(/List/value)', 'numeric') sum
from (select cast('<List><value>1</value><value>2</value></List>' as xml) xml) a

gives the sum 3 while:

select xml.value('sum(/List/value)', 'numeric') sum
from (select cast('<List><value>0</value><value>0</value></List>' as xml) xml) a

raises the error: "Error converting data type nvarchar to numeric."

Any idea how I can make my query return 0 when summing up a list of zero-valued nodes?

flag
1  
It seems that sum(/List/value) returns a float "0.0E0" when the sum is zero and that number cannot be converted to numeric. Any idea why I see this behaviour? – vegarwe May 11 at 13:42

1 Answer

vote up 0 vote down check

Your comment suggests an answer to your problem.

Instead of converting to numeric, convert to float. Scientific notation will convert to float.

link|flag

Your Answer

Get an OpenID
or

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