Exporting from SQLite to SQL Server

Geoff Appleford picture Geoff Appleford · Oct 2, 2008 · Viewed 79.4k times · Source

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

Answer

swilliams picture swilliams · Oct 2, 2008

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.