vote up 0 vote down star

hi there,

i`m using sql server ce together with sync framework. however, sync framework creates some system tables when calling the CreateSchema() method of the SqlCeClientSyncProvider. (e.g. __sysSyncArticle, __sysSyncSubscription, ...). i'm not able to delete these tables with sql statements within Visual Studio. (states that "drop table is not supported") and when trying to just create a SqlCeCommand i get a message that the specified tables does not exist.

what does it take to delete sql ce system tables programmatically? thanks

flag

41% accept rate

3 Answers

vote up 0 vote down

i have to reset the synchronization process in some special cases, delete some other tables too but want to keep some others, therefore completely deleting the database is not an option. i want to delete those system tables because i want all the metadata (last sync anchor, client id, server id, etc..) for the synchronization process being resetted.

link|flag
vote up 0 vote down

Joachim, You need to work with the Sync Framework on this, not against it. The point of the database is to track the sync metadata. If you want it to be a different replica (different anchor, client id, etc) then set it up as a different replica.

I suggest that you look at the new MSF 2.0, specifically the Provisioning and Management APIs. They seem to provide more of the flexibility you need. Sync Framework v2

link|flag
vote up -1 vote down

Uhhh... I think a better question is why you're trying to delete system tables at all. Do you know what they're for? Or are you just trying to delete them because you don't like the clutter?

link|flag

Your Answer

Get an OpenID
or

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