Search Results

12
votes

What are the advantages of VistaDB

The VistaDB client runtime is free. The runtime will never "expire at 3am" as you put it. Only the developer tools are licensed in that manner. You need 1 license per developer, simple. We even …
0
votes

Best primary key data type for Linq to SQL

OK, I had just written a blog about this. I am reposting below for others benefit. The basic gist a …
1
vote

What is the difference between Wide and Nonwide tables in SQL 2008?

It is important to note that your total fixed and variable length data are still limited to 8019 bytes total. Being able to do this crazy extra large number of columns is only supported in sparse …
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 …
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

How to move data from VistaDB to MS SQL Server?

You can also load the VistaDB database in Data Builder and do an XML Export of schema and data. That will usually get everything you need out - and it is in a format that SQL Server can i …
1
vote

Do ADO.Net DataTables have indexes?

John above is correct. DataTables are disconnected in memory structures. They do not map to the physical implementation of the database. The indexes on disk are used to speed up lookups …
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 …