So, being an early adopter, I have developed an application based on SQLCE4, ASP.Net MVC3 and Entity Framework CTP5 (code first) based on a fit of recklessness induced by reading this announcement.

Now the application is moving into production and we need to lose the ce in favour of SQL Server 2008 and later azure.

Scott Gu mentioned that tooling would be out soon to support such migrations but I wonder if we're too early to take advantage of an easy route.

Anyone done it? Is there a simple migration path? Something like the MDF create script option in Visual Studio?

link|improve this question

70% accept rate
if an answer helped you, can I suggest you accept one. – Mitch Wheat Aug 1 '11 at 15:12
feedback

2 Answers

Have you looked at SQL Server Compact Toolbox and SQL Compact data and schema script utility on codeplex?

It allows you to script schema and data to a .sql file, which can be used in any context. It also scripts DML for use in SSMS scripts.

You can use the resulting script for documentation, programmatic scripting of SQL Compact database files, or migration of schema and data to SQL Server (Express) 2005 or later

link|improve this answer
feedback

You can do so using Webmatrix too

Here's a good explanation: http://www.sarasota.me/blog/migrate-orchard-database-sql-server-ce-to-sql-server-webmatrix

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.