ssis - OLE DB SOURCE truncation -
i have ole db source , flat file destination set of objects on ssis package. getting warning on ole db object data truncation field. field called pricing_specialist_c. part of subquery. in below query. when run query using preview inside ole db edit window, there no truncation. set length of field in question 100 characters string in connection. however, in flat file truncated @ 15 characters. why this? heres query (with of stuff removed)
select dbo.salesquotationtable.custaccount 'account_number__c', oem 'oem_c', (select name userinfo salesquotationtable.salestaker = userinfo.networkalias) 'pricing_specialist_c' dbo.salesquotationtable left outer join dbo.contactperson on dbo.salesquotationtable.contactpersonid = dbo.contactperson.contactpersonid createddate >= convert(varchar(10), getdate() - 30, 101) or --only update quotes created in 2013 or after (modifieddate >= convert(varchar(10), getdate() - 30, 101) , year(createddate) > 2012)
Comments
Post a Comment