I have an SSIS package which is using Oracle Provider for OLE DB to retrieve data from Oracle database.
One of the columns that I'm selecting is a coordinates(polygon) info. It is coming as CLOB (DT_NTEXT) in a text polygon representation: POLYGON((-1 1, -3 3, -1 1)) - (It's just an example. The actual values that I'm receiving have much more points and the string is very long)...
When I run the package on my local machine it works fine and shows the polygons as described above.
When I deploy my package to another server the values are coming like this: 䰀夀䜀 (Chinese characters...?)
The package is reading the data from the same Oracle source.
Any ideas on how it can be fixed? I cannot convert the column itself to another format since it can be very long (more than 8000 characters).
One of the columns that I'm selecting is a coordinates(polygon) info. It is coming as CLOB (DT_NTEXT) in a text polygon representation: POLYGON((-1 1, -3 3, -1 1)) - (It's just an example. The actual values that I'm receiving have much more points and the string is very long)...
When I run the package on my local machine it works fine and shows the polygons as described above.
When I deploy my package to another server the values are coming like this: 䰀夀䜀 (Chinese characters...?)
The package is reading the data from the same Oracle source.
Any ideas on how it can be fixed? I cannot convert the column itself to another format since it can be very long (more than 8000 characters).