Sqlite export - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T02:48:37Zhttp://stackoverflow.com/feeds/question/163079http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163079/sqlite-export2Sqlite exportgeoff2008-10-02T15:41:17Z2008-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#1631261Answer by swilliams for Sqlite exportswilliams2008-10-02T15:48:54Z2008-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#1631361Answer by Nathan Clark for Sqlite exportNathan Clark2008-10-02T15:51:57Z2008-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>