Import MySQL dump file into MSSQL

心不动则不痛 提交于 2019-12-01 19:39:56

This information in the file is only to delete and recreate the schema of the database (that I assume you already have), so you probably don't need that.

The bulk insert part is the interesting, probably you can isolate that part for each table to different files and upload it to MsSQL with BULK INSERT from T-SQL, you are able to define delimiter and other settings for this BULK insert you it should fit whatever format you have..

That's official docs MS docs.

Migrating MySQL to Microsoft SQL Server 2000 http://technet.microsoft.com/en-us/library/cc966396.aspx

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