I am facing the issue in data loading where we have conditional expression in Data flow task. Data is loaded from .csv and .txt file SQL server table.Conditional expression used:
(@[System::UserName] == "domain\\jisca") ? (DT_NUMERIC,38,18)WSTR_M_VALUE : (DT_NUMERIC,38,18)REPLACE(WSTR_M_VALUE,",",".")
Account "domain\\jisca" is service account which is having admin access over the server. This expression is written in Derived column transformation for the new column 'M_Value_Num'.
The same configuration is working in our Test Environment but not in our Production.