Sqlite export - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:48:37Z http://stackoverflow.com/feeds/question/163079 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163079/sqlite-export 2 Sqlite export geoff 2008-10-02T15:41:17Z 2008-10-02T15:51:57Z <p>Does anyone know of a tool to migrate a Sqlite database to SQL Server(both the structure and data)?</p> <p>Thanks?</p> http://stackoverflow.com/questions/163079/sqlite-export/163126#163126 1 Answer by swilliams for Sqlite export swilliams 2008-10-02T15:48:54Z 2008-10-02T15:48:54Z <p>sqlite does have a .dump option to run at the command line. Though I prefer to use the <a href="http://sqlitebrowser.sourceforge.net/" rel="nofollow">SQLite Database Browser</a> 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.</p> http://stackoverflow.com/questions/163079/sqlite-export/163136#163136 1 Answer by Nathan Clark for Sqlite export Nathan Clark 2008-10-02T15:51:57Z 2008-10-02T15:51:57Z <p>The Sqlite <code>.dump</code> command will output the entire contents of the database as an ASCII text file. This file is in standard SQL format, so it can be imported into any SQL database. More details on this page: <a href="http://sqlite.org/sqlite.html" rel="nofollow">sqlite3</a></p> <p>I don't know how the import is done in SQL Server; perhaps someone can edit this post with specific instructions?</p>