CSV to Table
select * from Tables
BULK INSERT v_Tables
FROM 'C:\Users\dedweb\Desktop\Kitap1.csv'
WITH
(
FIRSTROW = 1,
FIELDTERMINATOR = ';', --CSV field delimiter
ROWTERMINATOR = '\n', --Use to shift the control to next row
TABLOCK
)