Exporting from SQLite to SQL Server

后端 未结 6 1686
野的像风
野的像风 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:28

    sqlite-manager, firefox add-on: allows you to export an SQLite database in a SQL script.

    Data Base>Export Database>Export to file

    (Correction firefox 35 bugg obliged to correct the extension code as indicate to the following web page: How to fix your optional sqlite manager module to work)

    Command line :

    sqlite3 DB_name .dump > DB_name.sql
    

    exports the sqlite database in a SQL script.

    From url : http://doc.ubuntu-fr.org/sqlite.

提交回复
热议问题