Deleting Sql Ce system tables programmatically? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:42:37Z http://stackoverflow.com/feeds/question/230421 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/230421/deleting-sql-ce-system-tables-programmatically 0 Deleting Sql Ce system tables programmatically? Joachim Kerschbaumer 2008-10-23T16:29:41Z 2009-11-03T12:30:48Z <p>hi there,</p> <p>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.</p> <p>what does it take to delete sql ce system tables programmatically? thanks</p> http://stackoverflow.com/questions/230421/deleting-sql-ce-system-tables-programmatically/230466#230466 -1 Answer by DannySmurf for Deleting Sql Ce system tables programmatically? DannySmurf 2008-10-23T16:39:44Z 2008-10-23T16:39:44Z <p>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?</p> http://stackoverflow.com/questions/230421/deleting-sql-ce-system-tables-programmatically/230946#230946 0 Answer by Joachim Kerschbaumer for Deleting Sql Ce system tables programmatically? Joachim Kerschbaumer 2008-10-23T18:48:20Z 2008-10-23T18:48:20Z <p>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.</p> http://stackoverflow.com/questions/230421/deleting-sql-ce-system-tables-programmatically/1667048#1667048 0 Answer by EWizard for Deleting Sql Ce system tables programmatically? EWizard 2009-11-03T12:30:48Z 2009-11-03T12:30:48Z <p>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.</p> <p>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. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=89adbb1e-53ff-41b5-ba17-8e43a2e66254&amp;displaylang=en" rel="nofollow">Sync Framework v2</a></p>