Search Results

0
votes

What are the limitations to SQL Server Compact? (Or - how does one choose a database to use on MS platforms?)

I must also chime in here with VistaDB as an alternative to SQL CE. VistaDB does support encryption (Blowfish), it also supports TEXT a …
1
vote

How to get the top record from SQL Server Compact Edition?

If your SQL CE hosed VS there is a Visual Studio Magazine post that talks about how to reinstall …
0
votes

Sql Server Ce 3.5 Check Constraints

I believe only simple constraints are supported your example above include a BETWEEN that would not be supported. …
1
vote

Why doesn’t SQL Server CE support varchar?

I think they were trying to reduce their deployment footprint and simplify the interface. That and probably trying to avoid having to deploy more versions of the DLLs (unicode vs non-unicode versi …
1
vote

How to automatically upgrade deployed database for end-users

The only thing I would add to the above comments is that you also need to be worried about a pack type operation. To upgrade your apps from SQL CE 3.1 to 3.5 required you install the 3.5 li …
1
vote

Are table indexes getting replicated to my sqlce database?

Actually the answer is "it depends". Some are, and some are not. It also depends on how you provision the mobile database. The different sync properties for provisioning do very different things …
1
vote

CHECK/NOCHECK for Sql Compact Edition

NOCHECK is not supported on SQL CE 3.1/3.5 ALTER TABLE SQL CE The usual method to acco …
1
vote

[LINQ-to-SQL] Does SQL Server Compact (CE) support a RequiresNew transaction scope inside another one?

Nope, you cannot use nested transactions. Run this code on your SQL CE database and you will see the error message. BEGIN TRANSACTION; SELECT 'GOT 1'; BEGIN TRANSACTION; SELECT 'GO …
0
votes

Does SQL Compact Edition Support Clustered Indexes?

Most file based databases do not support clustered indexes. It would require a rewrite of the entire index if you inserted a new row out of order. Since this is expensive (and a blocking operatio …
0
votes

SQL Server CE nvarchar foreign keys with trailing whitespace

That is correct. Your only choice is to not use string based FK's. You can create a lookup table with the strings in them that assigned a uniqueID you then use for your FK's if you like. …
0
votes

SQL Server Compact Edition - Multiple Subscription issues

There is no provision for fail over servers through sync. You would have to setup a SQL Server cluster and have the original sync happen against the cluster. A database on another server c …