1. Dieses Beispiel zeigt wie mann eine .csv in eine
SQL importiert.
-- ACHTUNG DECIMAL WERTE MIT EINEM . TRENNEN UND OHNE TAUSENDER Separator in einer CSV
DROP TABLE net_temp_afa
CREATE 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_afa
BULK
INSERT net_temp_afa
FROM 'c:\afa.csv'
WITH
(
FIELDTERMINATOR = ';',
ROWTERMINATOR = '\n',
CODEPAGE = 'RAW'
)
GO