up vote 5 down vote favorite
1
share [g+] share [fb]

Is there a way to generate the sql statement for tables in sql server compact ? same as for sql server express+ ?

Essentially a create table( .... ) statement as output ?

link|improve this question
feedback

4 Answers

There is a project on Codeplex that someone has actually built the functionality to be able to do scripting for sql server compact edition databases.

link|improve this answer
feedback

You can connect to SQL Server Compact Edition using SQL Server Management Studio(SSMS), which in turn allows you to script out all database objects.

Please refer to: Managing SQL Server Compact Edition with SQL Server Management Studio

and then also, How to: Generate a Script

link|improve this answer
Script generation (and many other features) are hidden/disabled when you open a .sdf file (SQL Server CE) in SSMS. – MizardX Nov 23 '11 at 16:34
feedback

Using SQL Server Management Studio (a separate download) to export a "create database" script is the best way to go.

An alternative method, but more difficult/advanced method is to use SQuirreL database export plugin to create a script with JDBC.

I've used SQL servers own tool to generate scripts for years and that is the fastest and easiest.

link|improve this answer
feedback

There is a tool to do this. Check out http://www.antipodeansoftware.com/Home/Products This will iterate the entire SQL server, and write all the table, view, stored procedure and UDF scripts to a local drive. Great for adding SQL schema or DDL to source control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown