vote up 1 vote down star

I've been searching for some time for a good solution to implement the idea of managing schema on a Sql Server Compact 3.5 db.

I know of several ways of managing schema on Sql Express/std/enterprise, but Compact Edition doesn't support the necessary tools required to use the same methodology.

Any suggestions/tips?


I should expand this to say that it is for 100+ clients with wrapperware software. As the system changes, I need to publish update scripts alongside the new binaries to the client. I was looking for a decent method by which to publish this without having to just hand the client a script file and say "Run this in SSMSE". Most clients are not capable of doing such a beast.

A buddy of mine disclosed a partial script on how to handle the SQL Server piece of my task, but never worked on Compact Edition... It looks like I'll be on my own for this.

What I think that I've decided to do, and it's going to need a "geek week" to accomplish, is that I'm going to write some sort of tool much like how WiX and nAnt works, so that I can just write an overzealous Xml document to handle the work.

If I think that it is worthwhile, I'll publish it on CodePlex and/or CodeProject because I've used both sites a bit to gain better understanding of concepts for jobs I've done in the past, and I think it is probably worthwhile to give back a little.

flag

25% accept rate

3 Answers

vote up 0 vote down

Hi Richard - some random thoughts (not sure I can fully answer though)

  1. the Microsoft Sync Framework is one option. I haven't had a chance to fully appreciate what it can do once you've deployed it after the initial first time (which seems to work fine). There's a MSDN site for it here

  2. You can execute scripts on a mobile device, but not through something like SQL Management Studio, so in theory you could manage/maintain T-SQL scripts but the down side is that the T-SQL would be convoluted (to CE's supported statements) and I don't know a way to "automate" execution - but the Sync Framework might hold some answers..

link|flag
1  
Using the Sync Framework... that is to move data between a full-blown copy of SQL server and a satellite copy of the data. My point was how are folks that do mobile development handling database changes as their software evolves? – Richard B Apr 1 at 0:05
You can also AFAIK handle schema changes with it also – Rob Sanders Apr 1 at 1:13
You "Can", but its a very messy proposition with the way the Fx works. To actually make schema changes, dependent on what you are doing, you have to recreate the table with the new schema, move the data from the old table to the new one, delete existing, and rename new. :( – Richard B Apr 9 at 10:07
(Continuing)... That's not kosher to me, as for some of the schema changes I need to do, it will mark the whole table as needing to be synched... and I do not agree with that being a decent solution. I need this to run over a dialup/3G card pipe, so I want to keep things lean as possible. – Richard B Apr 9 at 10:08
vote up 0 vote down

If one of your key criteria is going to be working efficiently over a small pipe, the only real choice you have is to store a DB Schema Version (maybe somehow tied to the scripts checked into your CMS) and when an update is needed, the change scripts are sent over the wire and applied in order. You would probably want to keep a log in your DB as well of these scripts being applied so you can gracefully handle disconnects, reboots and other potentially nasty problems.

link|flag
vote up -1 vote down

Is SQL Server Management Studio any use for you?
http://technet.microsoft.com/en-us/library/ms172933.aspx

link|flag
Damian.. I don't think you've read the post... and maybe I need to make this clearer... I'm needing to publish update scripts to 100+ clients... I need a way that the application can handle the updates for me. I've actually decided to build my own method, using Xml, so that it performs much like what you have in tools like nAnt and WiX. It just sucks that no-one has ever done this before... that I cannot just snipe a copy, edit for my use, and be done with it. – Richard B Jun 11 at 21:49

Your Answer

Get an OpenID
or

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