Moving data from SQL Compact to SQL Server 2008

淺唱寂寞╮ 提交于 2019-12-07 05:00:32

You cannot directly convert a SQL Compact database into a full SQL Server 2008 database, as they are structured completely different. And as far as I know you cannot use SSIS (SQL Server Integration Services) to copy data from the SQL Compact database to a SQL Server database (the other way round would be possible).

So the only real option seems to write some app that reads the data from the SQL Compact database and then inserts it into the SQL Server.

You can use http://exportsqlce.codeplex.com to script the database and run the script against a SQL Server database.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!