plab


Hi
I definite a source OLEDB MS Access and my fields of the type ˇ°Textˇ± are seen in type of field DT_WSTR (Unicode) instead of DT_STR.

I do not include/understand why and like then, I must integrate them in fields varchar and not nVarchar, I do not find the solution
thank for your solution



Re: OLEDB Access PB

jwelch


You can use a Derived Column transform to convert between Unicode and Ansi. Use the operators under the Type Casts section.

Code Snippet

(DT_STR, 50, 1252) [Your_Column]







Re: OLEDB Access PB

Subhash

Hi plab,

You may even use a DataConversion transformation to change type DT_WSTR to DT_STR with a required length.

Thanks

Subhash Subramanyam