Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fastest way to migrate from sql server to sqlite for large datasets

I have a database with more than 32 million records, I have to migrate it from SQL Server to Sqlite.

I have tried SSIS (SQL Server Integration Services) with the help of this article http://dbauman.blogspot.com/2009/03/connecting-to-sqlite-through-ssis.html

but the process is very very slow, how can I migrate this data?

like image 299
Sawan Avatar asked Jun 09 '12 11:06

Sawan


1 Answers

There is a C# utility to automatically do conversion from a SQL Server DB to a SQLite DB by liron.

Here is the code project article.

like image 118
Damith Avatar answered Oct 06 '22 17:10

Damith