Tagged Questions

Microsoft SQL Server Compact is a free SQL Server embedded database ideal for building standalone and occasionally connected applications for mobile devices, desktops, and Web clients. You can develop applications with SQL Server Compact using the ADO.NET provider, and there is tooling support in Visual Studio. The latest version is 4.0, which has been enabled for web application usage.

learn more… | top users | synonyms (7)

23
votes
11answers
19k views

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

The application I want to build using MS Visual C# Express (I'm willing to upgrade to Standard if that becomes required) that needs a database. I was all psyched about the SQL Server Compact - ...
21
votes
5answers
9k views

Using SQL Server CE 4 on a remote host with MVC 3

I just upgraded my host to MVC 3 but I'm trying to do a "hello world" using SQLCE 4.0 but I just got: Sorry, an error occurred while processing your request. I see my layout and everything but ...
20
votes
3answers
2k views

SQL Server CE 4.0 performance comparison

SQL Server CE 4 (SQL Server Compact Edition 4.0) is not news already (If it is, you could read this article) But it is very interesting to see SQL Server CE 4 performance comparison to other ...
14
votes
4answers
35k views

How do you create a foreign key relationship in a SQL Server CE (Compact Edition) Database?

Visual Studio doesn't provide an interface for creating relationships between tables in a SQL Server CE database (I'm using version 3.0) and you can't open a Compact Edition DB using Management Studio ...
13
votes
4answers
11k views

Can't get sql server compact 3.5 / 4 to work with ASP .NET MVC 2

I'm using Visual Studio 2008 Pro. I'm probably missing something very obvious here, but I've been trying to get the CTP for Sql Server compact 4 to work in my asp.net mvc application. I can find next ...
12
votes
1answer
194 views

What happens if limit of Sql Server Compact Edition is reached?

What happens if a database reaches the limit of 4GB of the SQL Server Compact Edition? Is there a special exception for this? Can I safely catch this event or exception and, let's say, create a new ...
12
votes
3answers
4k views

What is the best way to represent a timespan in SQL Server CE?

Specifically speaking I only need hours:minutes but say I have a .NET TimeSpan object, how should I store that in a SQL(CE) database?
12
votes
4answers
2k views

Profiler for Sql CE

i wonder if there is something similar to Sql Profiler for Sql Server Compact Edition? i use SqlCE as backend for a desktop application and it would be really great to have something like sql profiler ...
11
votes
6answers
6k views

Entity Framework 4 and SQL Compact 4: How to generate database?

I am developing an app with Entity Framework 4 and SQL Compact 4, using a Model First approach. I have created my EDM, and now I want to generate a SQL Compact 4.0 database to act as a data store for ...
10
votes
4answers
6k views

SQL CE, SQLite. What are the differences between them?

What is the difference between SQL CE and SQLite? In what situation would i choose one over the other?
10
votes
8answers
9k views

SQLite vs. SQLCE vs. ? in a Mobile Application

When developing a mobile application on Windows Mobile, what are some of the database choices you've made? Why did you make that choice? In particular we've got a mobile app that we're building which ...
10
votes
4answers
13k views

How can I manage SQL CE databases in SQL Server Management Studio?

I created a SDF (SQL CE) database with Visual Studio 2008 (Add / New Item / Local Database). Is it possible to edit this database with SQL Server Management Studio? I tried to attach it but it only ...
10
votes
3answers
2k views

Would you use Sql Server Compact for a desktop application?

Does it make sense to use SQL Server Compact for a desktop application? How much data can it handle? Is it possible to use it with multiple users? What are the constraints? What happens when ...
9
votes
8answers
5k views

EF Code First: How do I specify that a property should generate a TEXT column rather than an nvarchar(4000)

I'm working with the Code First feature of Entity Framework and I'm trying to figure out how I can specify the column data types that should be created when the database is auto-generated. I have a ...
9
votes
2answers
127 views

Combining SQL Rows

I've got SQL Compact Database that contains a table of IP Packet Headers. The Table looks like this: Table: PacketHeaders ID SrcAddress SrcPort DestAddress DestPort Bytes 1 10.0.25.1 ...
9
votes
2answers
2k views

Why doesn't SQL Server CE support varchar?

I was creating a table in SQL Server CE and realized it doesn't support varchar. Looking this up, I found that "non-Unicode text columns (varchar, char, text) and smallmoney are not supported; ...
8
votes
5answers
457 views

Correct way to close database connection in event of exception

Does the following code leave the connection open if there is an exception? I am using a Microsoft SQL compact edition database. try { SqlCeConnection conn = new ...
8
votes
3answers
4k views

What is the number of maximum concurrent connections for Sql CE 3.5?

as google does not deliver what i want to know, i try to ask stackoverflow :) what is the number of max concurrent connections to a sql ce 3.5 database? thanks j.
8
votes
7answers
5k views

Database functionality with WPF app: SQLite, SQL CE, other?

I want to extend a WPF application with database functionality. Which database engine would you suggest and why? SQLite, SQL CE, other?
7
votes
2answers
69 views

How to get entity change delta in EF?

I need to get the list of changed fields only, the datastore is ssce so no triggers are available Is there any support in EF to get a list or to build a generic component ?
7
votes
2answers
134 views

Are there frameworks available to track user activity?

Before I start writing my own custom classes, I was wondering if there was a framework already out there to use. This is for a Winform/WPF application. I will be storing things such as battery ...
7
votes
3answers
163 views

Where is a good demo for SQL CE Replication?

Can someone please point me to a demo or walkthrough of SQL 2008 R2 replication with SQL CE. The idea at our end is to have clients that will connect daily to our server and replicate / synchronise ...
7
votes
3answers
243 views

Do I want an ORM?

We have an object model being used across three applications. Two programs collect data, another reads it and generates reports. The system is very disconnected, so we cannot have a single database ...
7
votes
1answer
2k views

How can I upgrade my Sql Server CE 3.5 sdf database to Sql Server CE 4.0?

I need to update my SqlCE3.5 database to 4.0. I get the following error message when I'm trying to access my 3.5 sdf/database using the new CE4.0 connection provide :- ...
7
votes
3answers
958 views

“If not exists” fails on SQL CE

I've got an unexpected problem. I'm making a script to update the schema on a SQL CE database. This won't run: if not exists ( Select column_name from information_schema.columns where ...
7
votes
2answers
1k views

AssertionFailure: “null identifier” - FluentNH + SQLServerCE

The code fails at session.Save(employee); with AssertionFailure "null identifier". What am I doing wrong? using FluentNHibernate.Cfg; using FluentNHibernate.Cfg.Db; using FluentNHibernate.Mapping; ...
7
votes
6answers
3k views

Data paging in SQL Server CE (Compact Edition)

I am writing a wpf destop application, and would like to use SQL Server CE as a backend. I'm trying to come up with a good way to do efficient data paging. In SQL Server Express, I can do something ...
7
votes
3answers
3k views

Advantages and Disadvantages of SQLite.NET and SQL Server Compact

I have used SQLite.NET many times. It always worked fine but I have a friend that is really pestering me that I should use instead SQL Server Compact so I stayed fully in Microsoft environment. Now, ...
7
votes
3answers
1k views

Does SQL Compact Edition Support Clustered Indexes?

Does SQL CE support clustered indexes?
7
votes
9answers
2k views

Has anyone used (or considered using) Sql Server Compact Edition?

I've been preparing to deliver a presentation on SQL Server Compact Edition 3.5 (SP1 - recently released) and I was wondering if anyone had designed (or contemplated designing) a system with SQL ...
6
votes
2answers
827 views

Setup EF4 data source for SQL Compact 4

I've installed visual studio 2010 SP1, EF 4.1, SQL Compact 4.0 with vs tools. Everything is appears ok, except I can't use SQL Compact 4 as a data source for Entity framework through the wizard. The ...
6
votes
4answers
1k views

SQLCE - Upsert (Update or Insert) - How to prepare a row using common method?

Following is the pseudo-code: SqlCeResultSet myResultSet = cmd.ExecuteResultSet(Options...etc); bool found = myResultSet.Seek(); if found { //do an Update myResultSet.Read() //make current ...
6
votes
1answer
3k views

SQL Server Compact 4.0 vs. SQLite

I'm interested in choosing an embedded DB engine for my WPF app. I would like information on how SQLite and latest SQL CE 4.0 compare. And if I should choose one over the other. Points of interest ...
6
votes
3answers
2k views

Generate SQL CE database from EF Code-First DbContext class

I've defined a set of classes in the style of Entity Framework Code-First conventions and annotated the class properties with System.ComponentModel.DataAnnotations attributes. Now I want to generate ...
6
votes
4answers
2k views

How to deploy SQL CE 4 CTP to shared hosting?

How do I deploy SQL CE 4.0 with EF4 to a shared hosting provider for ASP.NET MVC 2.0? I've included System.Data.SqlServerCe.dll, and the amd64 + x86 directories in my bin folder, but keep getting a ...
6
votes
2answers
2k views

How write query to alter table in Sql Server CE

I am new to Sql Server Compact Edition (CE). How to alter a table in Sql Server CE? I have an existing table, and I need to add identity column.
6
votes
4answers
4k views

Using Entity Framework with an SQL Compact Private Installation

I am using Entity Framework 4 in a desktop application with SQL Compact. I want to use a private installation of SQL Compact with my application, so that my installer can install SQL Compact without ...
6
votes
2answers
2k views

How do I rename a table in SQL Server Compact Edition?

I've designed my SQL CE tables using the built-in designer in VS2008. I chose the wrong names for a couple. I am now completely stuck trying to find a way to rename them. I am refusing to believe ...
5
votes
3answers
374 views

Inserting a large number of rows into SQL CE 4.0 with Entity Framework 4 (performance issue)

I have a small SQL CE 4.0 database with several tables, mapped using Entity Framework 4. Here is the code I have foreach (String designation in newItemDesignations) { ParameterData defaultValue ...
5
votes
1answer
707 views

An overflow occurred while converting to datetime using EF4

I have a windows application working with a SQL Compact 4.0 database, using EF 4.1 and code-first approach. I cannot save an object to the database since I'm getting an exception, with inner exception ...
5
votes
1answer
475 views

A sample configuration for nlog and SQL Server Compact 4.0

I would be grateful if someone could post me a sample nlog.config for using nlog with SQL Server Compact 4.0. I can output to the console and a file OK. I've tried various dbProviders and ...
5
votes
4answers
269 views

Switching from using SQL Server Express to SQL Server Compact

So far I have been using SQL Server Express on my desktop application even though usually the server is only used by that single application, by the single user, on the same single machine. This ...
5
votes
1answer
4k views

SQL Compact 4.0 can't open/read sdf file

I've installed SQL Compact 4.0 CTP 2 via WPI and used NUPack to add SQLCE.EntityFramework in my project. It compiles and run perfectly but I can't open the SDF file in Visual Studio 2010's Server ...
5
votes
2answers
1k views

Microsoft SQL Compact Edition rename column

Hy, I'm new with SQL Compact Edition and I am having problems renaming a column. I know that you can rename a table using sp_rename and this doesn't work with columns. I've searched for an ...
5
votes
1answer
711 views

Is SQL Server Compact Edition a sensible alternative to SQLite?

What are the differences, other than a file size restriction in SQL Server Compact, and Windows only usage?
5
votes
1answer
874 views

Visual Studio 2008: Don't deploy SQL Server Compact 3.5 when debugging

I'm using VS2008 to create a Compact Framework application for a Windows CE 5.0 device (Datalogic Kyman). I'm using SQL Server Compact 3.5 in my application. However, I'm debugging on a Kyman that ...
5
votes
4answers
9k views

how to open *.sdf files?

I used to open sdf (sqlCE) files with visual-studio? or sql-server? I really don't remember. Now I can't open this sdf file. With what program do I need to open it?
5
votes
5answers
5k views

How to import data in SQL Compact Edition?

I don't seem to find a tool for it, nor an odbc driver. Thanks UPDATE : I'm aware of the sql scripting possibilities. But than again : how to script a sql 2k table? (not just ddl, but data also?) ...
5
votes
1answer
3k views

Create SQL Server CE database file programmatically

How can I create a new SQL Server Compact database file (.sdf) programmatically, without having an existing template file to copy from?
5
votes
4answers
6k views

Methods to migrate SQL Database(mdf) to SQL Compact Edition(sdf)

I have 4 SQL Server 2005 db's that I want to move to SQL CE. I know I cannot keep the SProcs,Views, and Functions(Differences Between SQL Server Compact and SQL Server) but I would like to keep ...

1 2 3 4 5 25