OK, that is an XML schema / XML format file, are you importing XML ? Can you post a data sample ?
Typically, you should import into a "staging" area, and in so doing, can have all as SQLNVARCHAR and avoid some datatype conversions...
whilst "debugging" do not have to use BCP, can simply use openrowset and get a lot more visibility over your data e.g.
SELECT * FROM OPENROWSET( BULK 'C:\ee\myimportfile.txt', FORMATFILE = 'C:\ee\myformatfile.xml', FIRSTROW = 1) AS a