Most efficient way to move a few SQL Server tables to SQLite?
Posted
by wom
on Stack Overflow
See other posts from Stack Overflow
or by wom
Published on 2010-05-17T20:33:40Z
Indexed on
2010/05/17
21:00 UTC
Read the original article
Hit count: 128
I have a fairly large SQL Server database; I'd like to pull 4 tables out and dump them directly into an sqlite.db for remote querying (via nightly batch).
I was about to write a script to step through(most likely on a unix host kicked off via cron); but there should be a simpler method to export the tables directly (SQLite not an option in the included DTS Import/Export wizard)
What would the most efficient method of dumping the SQL Server tables to SQLite via batch be?
© Stack Overflow or respective owner