简体   繁体   中英

Remove header and footer export data from CSV to SQL Server

I need to export data from CSV to SQL Server

My CSV file is like this

Name,CustomerID
A,1 
b,2
End

I need to export only the data into the SQL Server table

A,1
b,2

I tried to work with BULK INSERT , but header is coming

I need to remove header and footer.

Is the only option is to create a bcp with format file

Any help appreciated.

Thanks

You can use first_row and last_row options. If there are 100 rows set first_row=2 and last_row=99

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM