Most of the stuff I put up here is to share knowledge around a bit but every so often I use it as a dumping ground for little titbits that I don't want to forget in the future. This is one such occasion.
I've been trying to access data in Oracle from SSIS via OLE DB and was getting the following warning:
"Cannot retrieve the column code page info from the OLE DB Provider. If the component supports the "DefaultCodePage" property, the code page from that property will be used. Change the value of the property if the current string code page values are incorrect. If the component does not support the property, the code page from the component's locale ID will be used."
The fix is simple. Set AlwaysUseDefaultCodePage=TRUE on the offending OLE DB Source component and it works fine. There are some caveats to this and these are detailed by Larry Pope in the seconc post of this discussion thread: http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=117014#117014
Thanks Larry!!
-Jamie