Exporting from SQLite to SQL Server

后端 未结 6 1697
野的像风
野的像风 2020-12-08 04:52

Is there a tool to migrate an SQLite database to SQL Server (both the structure and data)?

6条回答
  •  旧巷少年郎
    2020-12-08 05:06

    SQLite does have a .dump option to run at the command line. Though I prefer to use the SQLite Database Browser application for managing SQLite databases. You can export the structure and contents to a .sql file that can be read by just about anything. File > Export > Database to SQL file.

提交回复
热议问题