Import MySQL dump file into MSSQL

前端 未结 2 843
余生分开走
余生分开走 2021-01-19 05:55

Browsermob / Neustar produces a MySQLdump file that you can use to query load test data without incurring cloud hours (which are naturally billable). The dump file is a stan

2条回答
  •  一生所求
    2021-01-19 06:16

    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..

提交回复
热议问题