G
Guest
This is probably a long shot but has anyone successfully processed MS Access
memo column data with SSIS (SQL Server Integration Services)? I'm trying to
build a package to export Access data to an FTP server. The data flow is
defaulting to datatype DT_NTEXT which generates an error and says I must
transform it to type DT_TEXT. When I do this transform, I get another error.
Now I try to transform it to type DT_WSTR and this fails too. I need this
data to be a fixed length of 2000 characters and only DT_WSTR lets me specify
a length. If I do LEFT(xxx,2000) in the Access query, SSIS comes up with a
length of 255.
memo column data with SSIS (SQL Server Integration Services)? I'm trying to
build a package to export Access data to an FTP server. The data flow is
defaulting to datatype DT_NTEXT which generates an error and says I must
transform it to type DT_TEXT. When I do this transform, I get another error.
Now I try to transform it to type DT_WSTR and this fails too. I need this
data to be a fixed length of 2000 characters and only DT_WSTR lets me specify
a length. If I do LEFT(xxx,2000) in the Access query, SSIS comes up with a
length of 255.