Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
Ray0801
Creator
Creator

My float value has 5.0000E-05 I want to convert E-05 to decimal points?

Is it possible to display all the values in float as decimal points ,

I dont want it to be displayed as Power of E ,is it possible

I am using Talend Open Studio 7.3.1

I am loading my data into Float datatype length 30 ,into Sql Server Database

Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Are you seeing the values like this in your SQL Server queries? If this is the case, you will need to query with a cast. Something like this......

 

select cast([yourColumn] as decimal(18,18))

from yourTable

 

Talend is sending SQL Server the number. It doesn't care about how it is displayed. Nothing you do in Talend will change how SQL Server represents the number.

View solution in original post

1 Reply
Anonymous
Not applicable

Are you seeing the values like this in your SQL Server queries? If this is the case, you will need to query with a cast. Something like this......

 

select cast([yourColumn] as decimal(18,18))

from yourTable

 

Talend is sending SQL Server the number. It doesn't care about how it is displayed. Nothing you do in Talend will change how SQL Server represents the number.