Importing big csv file with too many columns into a table in SQL Server
问题 I want to import four .csv files - each with more than 300,000 rows and 150 columns and size over 0.5 GB - into a database table. What is the easiest way to do this in SQL Server? I am using the latest SQL Server 2017 Express. I have 4 large .csv files which I want to import it into a database. I was planning to import these into 4 separate tables. However, to create new table all the column names and datatypes are required to be defined which would be cumbersome. Hence I wanted to know how