I am using SQL server 2008 R2 and Microsoft SQL Server Management Studio 0.50.2500.0.
In my Stored Procedure,
I am converting varchar to numeric(18,2).
select convert(numeric(18,2),' ')
It returned 0.00 when the value was ' ', which was required.
But now, its giving error 'Error converting data type varchar to numeric.'
Can anyone please tell me that what wrong I did ? or Which made this change?
Thanks in advance.