Deleting Sql Ce system tables programmatically?
- by Joachim Kerschbaumer
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