I have a table in SQLServer that had a field defined as nvarchar(4) which I believe data services 4.0 has an issue with. When I imported the table the field showed up defined as LONG which caused an issue in my dataflow as I was trying to load a varchar(4) field.
The definition on the SQLServer side was changed to varchar(4).
I deleted the table in data services and try to reimport. It is still showing up defined as LONG. Anyone ever run into this before?