Tagged Questions

Microsoft SQL Server Express is a freely downloadable and distributable version of Microsoft's SQL Server relational database management system. It is targeted for embedded and smaller-scale applications, having a number of technical restrictions.

learn more… | top users | synonyms (2)

21
votes
12answers
74k views

How can I determine installed SQL Server instances and their versions?

I'm trying to determine what instances of sql server/sql express I have installed (either manually or programmatically) but all of the examples are telling me to run a SQL query to determine this ...
15
votes
14answers
34k views

How can I schedule a daily backup with SQL Server Express?

I'm running a small web application with SQL server express (2005) as backend. I can create a backup with a SQL script, however, I'd like to schedule this on a daily basis. As extra option ...
14
votes
6answers
4k views

SQL Express for production?

Is using SQL Express in a production environment a reasonable choice? I looked at Microsoft's comparison chart: http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx I would be using ...
13
votes
4answers
9k views

Error: Failed to generate a user instance of SQL Server

I'm trying to connect to an MDF. I've even gone to the lengths of re-installing sql server express entirely (it is now the only flavor of SQL installed on my box, where previously I had 05 dev and ...
12
votes
1answer
10k views

SQL Express connection string for Entity Framework Code First

I am working in Visual Web Developer 2010 Express, and using the Entity Framework Code First CTP. I am able to do this with the new SQL CE but I am unable to find a connection string to work with SQL ...
12
votes
2answers
6k views

Point to localhost\sqlexpress using only localhost

Working on a common codebase, one developer is running SQL Server Express 2005 and the other 2 are running SQL Server 2005. Everything is working fine, but the connection strings differ. To maintain ...
11
votes
4answers
4k views

Is there a SQL Server Profiler for SQL Server Express?

is there a sql server profiler for MSsql expess ? maybe an open source one ? or maybe just a tool that helps me see what query is passed to the database ?
10
votes
7answers
2k views

What happens when you hit the SQL Server Express 4GB / 10GB limit?

What kind of error occurs? What do users experience? Can you access the database using tools and what if you get it back under the 4GB / 10GB limit?
8
votes
4answers
12k views

.mdf is too new (661) my database supports version 655

I am using SQL Server 2008 express and i want to import .mdf and i get this error: .mdf version is 661, your db supports the version 655 Which version is 661 and how to import it in sql Server 2008.
7
votes
1answer
3k views

How to connect to SqlExpress for Entity Framework using Visual Studio 2010 Express?

I'm trying to use the Visual Studio 2010 Express editions to set up an ASP.NET MVC 2 Web Application using SqlExpress + Entity Framework as the data access. I have both the "C# Edition" and "Web ...
7
votes
6answers
7k views

How to run a stored procedure every day in SQL Server Express Edition?

How is it possible to run a stored procedure at a particular time every day in SQL Server Express Edition? Notes: This is needed to truncate an audit table An alternative would be to modify the ...
7
votes
2answers
4k views

Connection String to Connect to .MDF

I've created a new project in VS2008, and added a .MDF file to the project. This is the first time I've tried to use the MDF files and .SQLEXPRESS databases (I've always used extenal Oracle servers ...
7
votes
4answers
2k views

Entity Framework won't persist data in SQL Express (MDF)

I'm going crazy abou this, because I can't see what I'm doing wrong!!! Please help me!!! I was developing a application using Entity Framework and storing data in a .mdf database, my code can read ...
6
votes
2answers
1k views

Create a table without columns

Can I create a table without any columns in SQL Server by t-sql?
6
votes
3answers
636 views

“Unsolvable” bug in Visual Studio - how do I connect to SQL Server 2008 Express?

I've been struggling for some time now to be able to use the built-in functions in Visual Studio 2008 to handle *.mdf database files with SQL Server 2008 Express. I'm running on an x64-based system, ...
6
votes
4answers
3k views

Can I get sql profiler for sql2008 for free?

Is it possible to get sql profiler for sql2008 for free or you have to have a license to get it? i.e. it won't work with sql express
6
votes
4answers
16k views

How to get BIDS for Visual Studio 2008 SP1?

I currently use Visual Studio 2008 SP1 and have been migrating older projects into VS2008 but existing SSIS and SSRS (2005) projects have not been compatible with VS2008. It has been a pain to ...
5
votes
1answer
237 views

Why can I connect to a local SQL Server Express but not to a remote SQL Server from PHP?

This is the standard code when using windows authentication: <?php try { $conn = new PDO("sqlsrv:Server=geoffrey-pc\SQLEXPRESS;Database=books", NULL, NULL); ...
5
votes
1answer
311 views

SQL Server Express 2008 R2 for Production use on Amazon EC2 Micro Instance

Thank you for taking the time to read my question. A little background before I get to the real question. We are building an application and we do not know how much volume we are going to get the ...
5
votes
4answers
273 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
743 views

Can't recreate SQL Server Express database with Entity Framework Code First and MVC 3 without changing the database name

When I run the application with the following connection string the database file is created successfully. <add name="ConnString1" connectionString="Data Source=.\SQLEXPRESS; ...
5
votes
2answers
2k views

SQL Server Express 2008 using (local) in connection string

Is it possible to connect to a SQL Server Express 2008 database in ASP.NET with a server name of (local) like "server=(local);integrated security=SSPI;database=DBNAME"? I'm working with another ...
5
votes
7answers
860 views

How do i connect to a SQL database from C#?

I am trying to write a local program management and install system for my home network, and i think i've got the technologies nailed down: C#/.NET/WPF for the client Lua for installation scripting ...
5
votes
8answers
16k views

Any good SQL Server Management software for Mac OS?

I am used to using SQL Management Studio Express on Windows and was wondering if there were any good ones with similar functionality and price (free) for Mac OS X.
5
votes
5answers
8k views

How can I do a BEFORE UPDATED trigger with sql server?

I'm using Sqlserver express and I can't do before updated trigger. There's a other way to do that?
5
votes
4answers
2k views

Silent Installation of SQl Express 2005

Can anyone please let me know the procedure to perform silent installation of SQL Server Express 2005 and the way to specify the installation parameters.
5
votes
3answers
11k views

SQL 2005 Express Edition - Install new instance

Looking for a way to programatically, or otherwise, add a new instance of SQL 2005 Express Edition to a system that already has an instance installed. Traditionally, you run Micrsoft's installer like ...
4
votes
1answer
225 views

Violation of UNIQUE KEY constraint during SQL update

I have a simple database table (SQL Server 2008 R2 Express), which has a definition as follows: ID INT Auto Inc, PK Name VARCHAR(64) Unique Key Telephone VARCHAR(128) I ...
4
votes
1answer
3k views

Cannot connect to local SQL Server Express 2008 R2

I just installed SQL Server Express 2008 R2 and I have a problem connecting to it using the SQL Server Management Studio (locally). All SQL Server services are started (SQL Server (SQLEXPRESS), SQL ...
4
votes
2answers
9k views

DB cannot be opened because it is version 655. This server supports version 612

I'm trying to do some excercises from exam 70-515. Unfortunately I fail while trying to attach Northwind to a grid-control. It would result in: NORTHWND.MDF' cannot be opened because it is version ...
4
votes
1answer
614 views

SQL CE 4.0 or SQL Express? Is Orchard right?

We are about to implement new practices for our mvc web applications and although all our larger projects end up on SQL Server when live, most start life during development on SQLite or SQL Express ...
4
votes
2answers
972 views

Can I execute a T-SQL query to determine maximum data size for a SQL Server Express instance?

The original version of SQL Server Express had a fixed database size limit of 4GB. With 2008 R2 this has increased to 10GB. Our original code executed SELECT SERVERPROPERTY ('edition'), then looked ...
4
votes
3answers
1k views

How do I create a simple Windows form to access a SQL Server database?

I believe this is a very novice question, and if I'm using the wrong forum to ask, please advise. I have a basic understanding of databasing with MS SQL Server, and programming with C++ and C#. I'm ...
4
votes
1answer
805 views

Set UK date format for SQL Express

How do I permanently set the date format for SQL Express to be UK format (dd/mm/yyyy). I know I can use SET DATEFORMAT DMY, but this only works for that connection. I have also seen, exec ...
4
votes
1answer
275 views

Is the max limit of 4 GB on sql server 2005 express .mdf + .ldf or for .mdf only?

Is the max limit of 4 GB on sql server 2005 express .mdf + .ldf or for .mdf only ? Kindly clarify. Thanks.
4
votes
4answers
3k views

How do you stop a user-instance of Sql Server? (Sql Express user instance database files locked, even after stopping Sql Express service)

When using SQL Server Express 2005's User Instance feature with a connection string like this: <add name="Default" connectionString="Data Source=.\SQLExpress; AttachDbFilename=C:\My ...
4
votes
5answers
990 views

Best practice to create (on demand) SQL Server 2008 Express databases in C#?

The purpose is to handle the user's data (you can call them project, document, file, or whatever) in a brand new SQL Server 2008 Express database. The data are expected to occupy much less space than ...
4
votes
3answers
632 views

SQL server won't open DB created by Visual Studio

I've built an ASP.Net site in Visual Studio, and created the DB inside it (the .mdf file is in the APP_data folder). Now, when I want to deploy in the customer site, I think about maintaining the DB ...
4
votes
4answers
488 views

ASP.NET MVC wants me to store my SQL Server database files in the App_Data folder — should I?

When creating a new database with SQL Server Express 2005, the database files (.mdf and .ldf) get stored in C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data by default. However, with the ...
4
votes
8answers
3k views

Using Windows XP as a SQL Server

I was wondering if anyone knew of any limitations to using Windows XP as a File and SQL server. I am asking because one of the applications we sell, requires the customer to setup a server for ...
3
votes
2answers
40 views

Single User single computer app : Local database vs. database on a sql express

I'm building an application for a client, single user single computer only. If I use a local database, I want to know if a client would need to install SQL 2008 express edition to run the ...
3
votes
3answers
113 views

C# SQL Server Express backup and restore

Basically I have a windows form C# program that uses a SQL Server Express database to store data entered by the users. I want to add the ability for the user to be able to backup their database and ...
3
votes
2answers
260 views

Install SQL Server Express with C# application

I have an application that needs to have SQL Server installed in order to work, and I need to make an installer for the application that includes the installation of SQL Server Express in case it ...
3
votes
1answer
226 views

Changing from using EF code-first SQL Server Express approach to using standard Management Studio

I have been developing an application over the last few months using EF code first approach with SQL Server Express. It has been great but now I am ready to deploy my application to a live server I ...
3
votes
3answers
561 views

which datatype to use to store a mobile number

Which datatype shall I use to store mobile numbers of 10 digits (Ex.:9932234242). Shall I go for varchar(10) or for the big one- the "bigint". If the number is of type- '0021-23141231' , then which ...
3
votes
2answers
125 views

What's the name of MS's (ongoing?) embedded (serverless) SQL Server version with stored procedures support?

Some months ago I've read an announce of Microsoft to be going to release an embedded (serverless, linked to an application as a library/assembly and using a simple file to store data) SQL Server ...
3
votes
1answer
1k views

does sql server 2008 express allow remote connection?

i have tried, i put port 1433, i restart service, i dont have activate windows' firewall, and i just can local connection, i can't remote connection, so i read sql server 2005 express doesn't allow ...
3
votes
2answers
1k views

Cannot connect to SQL Server Express 2008 from MVC application

My brand new Server 2008 R2 Server will not accept connections from my MVC3 application. I have been trying to get this working for 3 days. It just will not connect via the browser. However I can log ...
3
votes
1answer
152 views

Future of “User Instance” in SQL Server

The following "SQL Server 2008 R2" page about "User Instances for Non-Administrators" has a note at the top that reads: This feature will be removed in a future version of Microsoft SQL ...
3
votes
4answers
618 views

SQL Server Express alternatives beyond 2GB limit

In our project (which is fully developed using .NET), we use a medium sized database about 2 GB in size. Currently we are using SQL Express edition; How do the alternates for SQL Server Express ...

1 2 3 4 5 14