estas seguro de que en tu archivo la primer columna es la 1 porque no pruebas moviendo este valor empezando con 3 y ves que valores mete y asi sucesivamente o prueba con esto:
Código SQL:
Ver originalSELECT *
FROM OPENROWSET(BULK 'C:\folder\store\18042012170710.csv',--File that are procesed
FORMATFILE='c:\format.Xml',--Format file, that file contains the info of the columns that are used in the fill of the table
FIRSTROW =2 --Row where the info start
) AS t2
para que veas que valores obtiene el bulk insert
Saludos!