vote up 1 vote down star

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 ?

flag

4 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

John - those options are not available for SSCE db's - try that

Note - I'm not able to comment as i don't have enough reputation so here it is

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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