Tagged Questions
Use this tag for questions specific to scaled down, free edition of SQL Server 2008.
11
votes
7answers
17k views
Limitations of SQL Server Express
My hosting provider (Rackspace) is offering a fully managed dedicated server with SQL Server Web verion () installed. My company handles web development, and has about 20+ clients using ASP.Net + SQL ...
10
votes
5answers
2k views
Binary Blob truncated to 8000 bytes - SQL Server 2008 / varbinary(max)
I have upgraded from Fluent Nhibernate 1.0 with Nhibernate 2.1 to pre-
release 1.x with NHibernate 3.0 GA and have hit what I think is a regression, but I want to hear if that's indeed the case.
I ...
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.
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
5
votes
4answers
2k views
How to find the worst performing queries in SQL Server 2008?
How to find the worst performing queries in SQL Server 2008?
I found the following example but it does not seem to work:
SELECT TOP 5 obj.name, max_logical_reads, max_elapsed_time
FROM ...
5
votes
4answers
249 views
SQL: Deleting duplicate records in SQL Server
I have an sql server database, that I pre-loaded with a ton of rows of data.
Unfortunately, there is no primary key in the database, and there is now duplicate information in the table. I'm not ...
5
votes
2answers
1k views
full text search using sql server 2008
i had installed sql server 2008 express edition with tools but i need to use full text search which i understand is missing in the edition that i have.
how do i go about upgrading to get full text ...
4
votes
2answers
3k views
How to Bootstrap SQL Server 2008 Express SP1?
I am trying to bootstrap SQL Server 2008 Express SP1 into my application. Previously I used Wise for Windows to perform the prerequisite installation, but Wise doesn't support Windows Installer 4.5 ...
4
votes
2answers
5k views
The 'SQLNCLI' provider is not registered on the local machine
I have a NAnt-based script which that I run on my local PC that connects to SQL Server 2008 Express also running on my local PC to drop and recreate databases using .sql files - this works fine, no ...
4
votes
3answers
2k views
Using SQL server 2008 for ASP.net 2.0 Membership provider
I tried to set-up the SQL tables for ASP .net 2.0 membership provider by clicking on ASP.net Configuration under Project.
I have completely uninstalled SQL 2005 Express and installed SQL 2008 Express ...
4
votes
4answers
3k views
Including a named instance of SQL Server 2008 Express with my application
Good morning, all. This is my first question on stackoverflow, so hopefully this isn't something that's been beaten to death and I haven't been able to find it.
I'm developing an application that is ...
4
votes
5answers
6k views
SQL Server Browser showing only hostname, not instance name
The title says it all. I just setup a new Windows Server 2008 machine with an instance of SQL Server 2008 Express. The SQL Browser service does not appear to be working correctly. In Management ...
4
votes
3answers
9k views
Add user to SQL Server 2008 - permission denied
I have recently had some problems that I think might be helped by debugging my ASP.NET MVC application in IIS instead of with the default ASP.NET Development Server. However, when I try this the ...
3
votes
1answer
168 views
How to import data from Excel into SQL Server Express 2008 in MVC3
I'm using MVC3 with C# code. I have a table in my SQL Server Express containing some columns, and I have an Excel sheet which has the same number of columns with the same datatypes and names.
My ...
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
3answers
524 views
SQL Server 2008 R2 Express, service stopping on server
I have a virtual windows server with SQL Server 2008 R2 Express. for the last couple of days When I get up in the morning and check my site, its down, as the SQLEXPRESS service is stopped.
I have ...
3
votes
3answers
23k views
Visual studio 2010 and Sql Server
Do visual studio 2010 include already Sql Server instance, or I need to install Sql Server developer edition to develop an application that need a Sql Server db.
If it installs a Sql Server express ...
3
votes
1answer
1k views
Sql Server 2008 Express Edition Licensing
I'm deploying a web application into a server (hosting company).
The application uses Sql Server 2008 Express Edition as its database.
It seems from the license agreement that this state is ok, as ...
3
votes
5answers
2k views
SQL Express 2008 - what's a reasonable aplication size for it's 'limitations'?
Without wanting to sound too stupid, SQL Express is free and the free resources make it a good choice for a beginner like me. I know it has limitations (read other posts) but the figures mean little ...
3
votes
5answers
2k views
How to add SQL Server 2008 Express to List of Prerequisites
How can I add SQL Server 2008 Express to the list of Pre-requisites in Visual Studio 2008 SP1 MSI Installer Project.
Thanks
Kishore
3
votes
4answers
10k views
Visual C# 2008 Express connection to SQL Server 2008 Express problem
I have a problem with Visual C# 2008 express (SP1) connecting to SQL Server 2008 express.
The "Add Connection" window (wherever initiated) doesn't list existing sql server and no option for sql server ...
2
votes
3answers
73 views
How does the Data Type of an SQL table's PK impact query performance?
How does the Data Type of an SQL table's PK impact query performance?
Specifically, I am interested in:
What is the difference between string datatypes (e.g. nvarchar(n), varchar(n)) and numeric ...
2
votes
1answer
303 views
How do I grant a database role execute permissions on a schema? What am I doing wrong?
I am using SQL Server 2008 Express edition.
I have created a Login , User, Role and Schema.
I have mapped the user to the login, and assigned the role to the user.
The schema contains a number of ...
2
votes
1answer
15 views
SQL Server 2005: what LINQ generated query is better - with “Where()” or “Any()”?
var query = from c in db.Customers select c;
query = query.Where(c => c.Orders.Where(o => o.OrderItems.Where(oi => oi.SellerID == sellerID).Count() > 0).Count() > 0);
that generates ...
2
votes
3answers
56 views
Normalized Database Question
I should know this but I expect it to be a simple answer...
This is my simple database so far for this question:
Am I supposed to insert the Id from Contact and Phone into Contact_Phone when I ...
2
votes
1answer
406 views
How to copy a MSDE database to SQL Server 2008 Express?
We have a client environment that has MSDE. We're looking to install SQL Server 2008 Express on the clients but must retain MSDE for other applications.
Assuming both MSDE and SQL Server 2008 Express ...
2
votes
2answers
129 views
Encrypting Whole Database
I need to encrypt whole databse, not any specific column in the database. This should be done in SQL 2008 or in SQL 2008 Express edition
If any one can, do favour for this
2
votes
1answer
530 views
Exporting MS SQL Schema and Data
I'm used to MySQL and PHPMyAdmin - I had to switch over to MSSQL for an ASP.net project, and I'm having tons of trouble. I'm using the express version of SQL 2008, with SQL Server Management Studio. ...
2
votes
1answer
3k views
Howto use Windows Authentication with SQL Server 2008 Express on a workgroup network?
I have two computers running SQL Server 2008 Express: c01 and c02, I setup both for remote connection using windows authentication. Worked fine for c02 but not for c01.
This is the error message I'm ...
2
votes
1answer
474 views
How to connect SQL Server 2008 Express?
I can`t connect SQL Server Express 2008,I downloaded and installed SQL Server 2008 Express 64Bit, Microsoft SQL Server Management Studio.
And I can`t connect to the SQL Server, I tried those options
...
2
votes
2answers
65 views
How do I backup the data in SQL Server 2008 on a third party host?
I have a SQL Server 2008 database that is hosted by a third party host (heart internet).
How would I go about backing this up?
I used SQL Server Management Studio Express 2008 to create the tables ...
2
votes
1answer
728 views
Does SQL 2008 Express supports Change Tracking
Due to the lack of documentation for this on MSDN, I am forced to ask here.
Does the Express version support the same Change Tracking Feature(s) as the other editions does?
Thanks
leppie
2
votes
4answers
4k views
Limited memory usage of sql server 2008 express?
I want to install sql server 2008 express on my laptop that has 1 GB memory, but my database contains lots of binary data that I don't want spending all my RAM. I would much rather sacrifice sql ...
1
vote
2answers
69 views
Cannot connect to sql server 2008 express locally
I am trying to connect to a local host sql server 2008 express server. I am running my c# asp.net code locally as well (testing before I connect to dev servers). I cannot get the code to connect to ...
1
vote
3answers
205 views
How to create jobs in SQL Server Express edition
Could any one please explain me how can I create jobs in SQL Server Express edition?
1
vote
1answer
60 views
Web Site (ASP.NET) Deployment with SQL 2008
I have a website built with ASP.NET and uses SQL Server 2008 (Express edition).
I have a group of testers in different locations. I would like to host the web site on a web server.
What are my ...
1
vote
1answer
571 views
In place upgrade from SQL Server 2005 Enterprise to 2008 R2 express
I couldn't find this anywhere, so i thought I'd ask here. Can you do an in place upgrade from sql server 2005 enterprise to sql server 2008 r2 express?
The reason i'm asking is because i've got a ...
1
vote
2answers
307 views
Can I use datasource=.\\SQLEXPRESS or do I need to now use: machinename\\SQLEXPRESS
Can I still use datasource=.\SQLEXPRESS or do I need to change it to : machine_name\SQLEXPRESS for a local instance of SQL Server 2008 Express in C#?
My connection string worked fine in SQL Express ...
1
vote
2answers
102 views
how to pass all database (fast) since sql server 2008 express to sql server 2008 R2 (NO express)
well i had sql 2008 express, and now i have installed, sql server, now i want to delete sql express, but in that instance i have all my database i have worked (plus of 20), so they are very important ...
1
vote
1answer
503 views
Cannot create database file programmatically (SQL Server 2008 R2 Express)
I'm trying to create a database with LINQ to SQL programmatically.
I tried (following this):
MySQLSvrDb db = new MySQLSvrDb(@"c:\mydb.mdf");
if (!db.DatabaseExists())
{
db.CreateDatabase();
}
...
1
vote
1answer
607 views
change collation of DB SQL Server 2008
I have created some new databases in SQL Server 2008 Express (10.0.1600.22) and I have also restored one from SQL Server 2005 Express (9.00.1399.06).
The collations for these are different and I ...
1
vote
1answer
1k views
ASP.NET MVC : Using the same database for Entity Framework and ASP.NET Membership
Im trying to user ASP.NET MVC3 with Entity Framework and ASP.NET Membership for authentication. I've set up an existing database as my application services database for membership.
When i create the ...
1
vote
3answers
111 views
Simplest SQL query never returns
I have a SQL query that is quite simply select * from tblOrders where customerID = 5000but it never returns. I waited 10 minutes and gave up.
The weirdest thing is that other queries on the same DB, ...
1
vote
5answers
149 views
SQL data retrieve - C#
how do i retrieve data from a table within a loop or something. That means I want to retrieve row by row at a time. but the sequence of rows may differ.
For example, 1st time i want 5rd row,then 2nd, ...
1
vote
1answer
41 views
Is there anything similar to Oracle Analytics in SQL Server 2008?
I used Oracle Analytics for SQL. Is something like that available in SQL Server 2008 Express and Compact?
1
vote
1answer
42 views
Getting error after installing sql server 08 Express edition
I have installed SQL server 08 express edition and then tried to connect using SQL server management studio, but getting below error:
TITLE: Connect to Server
Cannot connect to ...
1
vote
3answers
464 views
SQL Server 2008 Datetime field overflow
I am using C# to interface with a SQL database. the database has a DateTime field. When I try to write a DateTime object from C#, I get the following error:
ERROR [22008] [Microsoft][ODBC SQL ...
1
vote
1answer
98 views
Sql 2008 Debugging from Management Studio
How do i attach debugger to Sql 2008 Express edition from Management Studio?
1
vote
1answer
131 views
Can SQL Server 2008 Express be installed with SQL Server 2005 Standard
I know SQL Server 2008 Express can be installed side by side with SQL Server 2005 Express, but but am not sure, and have not found any useful posts about if it is possible to install SQL Server 2008 ...
1
vote
1answer
2k views
hibernate generator won't insert with uniqueidentifier
I'm trying to map an entity using Hibernate Annotations, so that when a record is created and saved (via cascade), an ID is automatically generated. With my current setup (or a few others I've tried) ...