Bulk Load Files into SQL Azure?

两盒软妹~` 提交于 2019-11-29 05:50:06

BCP is one way to do it.

This post explains it in three easy steps: Bulk insert with Azure SQL

You are on the right track. The Bulk Copy API will work. I am using it. And it's the fastest way to import data because it uses INSERT BULK statements. Not to get confused with the BULK INSERT statement which is not supported in SQL Azure. In essence, BCP and the SqlBulkCopy API use the same method.

I think it's important to note that BCP cannot handle source files that are Unicode while using a format file to do your import.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!