Closed. This question does not meet Stack Overflow guidelines . It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center .
Closed 10 days ago.
Improve this question
Is there any best way to upload 14 million records into SQL Server database, without splitting the file.
Thanks in advance.
- I have tried with import export wizard tool, but the database freezes.
- I am expecting an alternate source to upload the 14 million records to SQL Server.
1条答案
按热度按时间jmo0nnb31#
The fastest way is using the
Bulk Insert
. You can insert the data into table or Common table expression CTE or table variable or temp table then I'd remove the duplicate rows across the distinct and Joins command from t-sql.And here is the full parameter description.