Microsoft
Software
Hardware
Network
Question : DT_WSTR dropping value before decimal point in SSIS
I'm trying to convert a value less than 1 e.g. 0.34 in to a string variable using DT_WSTR in a derived column transformation and it gets converted to ".34" rather than "0.34". How do I fix this please?
Answer : DT_WSTR dropping value before decimal point in SSIS
Try converting it in your SQL Statement using Convert(Varchar(Length),Co
lumnName).
.If your using any other Source..
Try this ((ColumnName)< 1) ? "0"+ (DT_wstr,Length)(ColumnNam
e) : (DT_wstr,Length)(ColumnNam
e)
Random Solutions
Mac Mail only shows 90 days of deleted items
What does it mean if I am receiving output errors on all of my Cisco Aironet 1130AG?
how to find the nodes inteconnectivity is propperly configured
SPSS - Modify Output of Crosstabs
Code was working in Android 2.1 SDK but not on 2.2
Access 2003 -> Word 2003 - have a question on code that works to save doc as pdf file...
compareTo() - JavaScript example needed
Running RMI on Tomcat Servlet - How do I set up RMISecurityManager?
Need HP DMI Utility
How to make IN operator to accept CSV which are varchar in SQL Server 2008