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
Problems with Google Maps v3 and jQuery UI Tabs
update CentOS to php 5.2 or php5.3
HTC Touch 3G: How can I really upgrade WM6.1 to WM6.5 and/or porting to latest Android?
Vista Ultimate clone from HP to HP
Gantt Chart
get-wmiobject error - Powershell
SBS2008 , XP clients: Client side extensions failure.
How do I charge for a job?
Need a solution for Sum within a Sum
Utilizing array gleamed from GetRows method in Access VBA