-- ACHTUNG DECIMAL WERTE MIT EINEM . TRENNEN UND OHNE TAUSENDER Separator in einer CSVDROP TABLE net_temp_afaCREATE TABLE net_temp_afa ( Kto int, AnlageNr varchar(20), Anschaffungs_Monat int, Anschaffungs_Jahr int, Anschaffungs_Kosten decimal(18,2), Buchwert_3112 decimal(18,2), kum_Abschr decimal(18,2) ) SELECT * FROM net_temp_afaBULK INSERT net_temp_afa FROM 'c:\afa.csv' WITH ( FIELDTERMINATOR = ';', ROWTERMINATOR = '\n', CODEPAGE = 'RAW' ) GO