On Mon, 13 Apr 2015 21:38:25 +0000 "Drago, William @ CSG - NARDA-MITEQ" <William.Drago at L-3com.com> wrote:
> Is there a convenient way to transfer data from SQLite to SQL Server?
If I were doing it, I'd produce tab-delimited files with sqlite3 and
use the SQL Server bcp utility to upload the output.
The current trunk of the FreeTDS freebcp utility accepts input on a
pipe, such that
$ sqlite3 -separator " " db "select ... " | freebcp [...]
will work.
HTH.
--jkl

