Tagged Questions

Use this tag for questions specific to scaled down, free edition of SQL Server 2005.

learn more… | top users | synonyms

15
votes
7answers
30k views

How to change identity column values programmatically?

I have a MS SQL 2005 database with a table Test with column ID. ID is a identity column. I have rows in this table and all of them have their corresponding ID autoincremented value. Now I would like ...
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
2answers
545 views

How do I manage version control when developing with SQL Server Express?

I am developing a website using SQL Server Express on my development machine. My web hosting company is providing me with SQL Server 2005. At the moment all I have is a database that I develop with ...
3
votes
3answers
480 views

How can I avoid a deadlock between these two SQL statements?

I have two stored procedures running in separate threads, running on SQL Server 2005. One procedure inserts new rows into a set of tables and the other procedure deletes old data from the same set of ...
3
votes
3answers
335 views

sql - ModifyDate column - Is using a Computed Column a correct way to implement this?

I just want to have a "ModifyDate" column automatically populated for me when a record is either inserted or updated. Should I be using triggers or is it OK to use a Computed Column? (Using SSMS2005 ...
3
votes
2answers
938 views

SQL Server 2005 (Express) - Login vs User

I'm quite new to Microsoft SQL Server. I have some experience with MySQL, and there you have a user with privileges, if I understand things right; these privileges decide which databases you have ...
3
votes
1answer
373 views

SQL Server Bulk Insert Issue on Windows7

I’ve got an application that uses SQL Server Express 2005 SP3. This application is distributed to several hundred users, each of whom is running XP. However, our company will be moving to Windows7 ...
3
votes
2answers
895 views

Changing ASPNETDB name

Is there anyway to change the ASPNETDB and also using SQLExpress (2005) user instance ? I have changed my web.config's connectin string to <remove name="LocalSqlServer"/> <add ...
2
votes
4answers
122 views

How to exclude first row in SQL Server 2005 Express

I want to exclude the first row from displaying from a SQL Server 2005 Express database... how do I do this? I know how to return just the top row, but how do I return all rows, except the top row
2
votes
2answers
96 views

SQL value contrains to another table data

I have a couple of tables, lets say I have a cars table and I have another table which hold all types of cars available(just to avoid multiple entries on the cars table) so I want a constraint on my ...
2
votes
3answers
378 views

unable to restore database in sql server (single_user)

I am trying to restore a database in my sql server 2005 express edition. I know that to restore the database I need to make it to single user. I am giving this command to make it to single user use ...
2
votes
6answers
3k views

Unable to cast object of type 'System.Object[]' to type 'System.String[]'

I am developing a C# VS 2008 / SQL Server website application. I am a newbie to ASP.NET. I am getting the above error, however, on the last line of the following code. Can you give me advice on how ...
2
votes
1answer
182 views

Using SQL Express edition commercially

Can I use SQL Server Express edition for commercial use? Can our clients redistribute SQL Server Express edition with their application?
2
votes
5answers
291 views

How can I combine these queries?

I have 5 queries I'd like to join together. Basically what they do is they go though the database and select how much a tenant has paid, and how much a tenant owes based on how long ago he or she was ...
2
votes
7answers
7k views

How can I join on a stored procedure?

I have a stored procedure that takes no parameters, and it returns two fields. The stored procedure sums up all transactions that are applied to a tenant, and it returns the balance and the id of the ...
2
votes
2answers
354 views

How to list SQL 2005 Express instances

I would like to list what instances of SQL 2005 Server (Express Editon) are installed on local or remote machine (my app is in Native C++). I found that i can make it by SQLDMO, however it seems that ...
2
votes
2answers
3k views

Trouble setting up witness in SQL Server mirroring scheme w/ error

I've got a trio of Windows servers (data1, data2 and datawitness) that aren't part of any domain and don't use AD. I'm trying to set up mirroring based on the instructions at ...
2
votes
2answers
5k views

How can I view the contents of sql binary data fields?

Does anybody know of a free utility that I can use to view the contents of fields containing binary data in an MS SQL Server 2005 database?
2
votes
2answers
1k views

What do you use to Profile SQL Server 2005 Express?

I've got a problem on an SQL Server 2005 Express instance, and I need to see exactly what is being run, since what I believe is being run works fine when I run it from Management Studio. It appears ...
1
vote
5answers
48 views

T-SQL - Error on Case Statement

USE NORTHWIND; GO SELECT SHIPCOUNTRY,[ORDERS_ID] = CASE ORDERID WHEN ORDERID = 10300 THEN 'I AM FROM 10300' WHEN ORDERID = 10400 THEN 'I AM FROM 10400' WHEN ORDERID = 10500 THEN 'I AM FROM 10500' ...
1
vote
2answers
62 views

Find out which website page are connected to SQL databases or instances

Is there a way to find out which parts of my different websites are connected to which SQL databases and/or tables? (database and websites were not built by me) I want to know that page ...
1
vote
1answer
52 views

Large .sql files

Not sure if this really belongs here, so please move it if it doesn't. I have several very large .sql file that I'm trying to run in SQL Server Studio Express 2005. The problem is that when I try ...
1
vote
1answer
35 views

Comunication in SQL Server 2005 and php

To avoid using DLLs what aproach should I follow to comunicate PHP with SQL Server, this is because ASP is not needed in requierements.
1
vote
2answers
86 views

How do I secure the data in my winform's SQL 2005 Express database?

I have a c# winform application that uses SQL 2005 Express. The application creates math and reading quizzes and is marketed to parents of school-aged children. The parents purchase and download SQL ...
1
vote
1answer
195 views

Same name tables under different schemas with SQL Server 2005 Management Studio Express

I know how to create a new schema and write a DDL script to create tables with the same name that reside in different schemas in the same database. I want to know how to do that using SQL Server 2005 ...
1
vote
1answer
1k views

how to pass column name with parameter in insert sql statment

how to pass column name with parameter in insert sql statment e.g. @name='name' insert into employees (id,@name) values(1,'a') is this possible?
1
vote
3answers
326 views

Encrypt column names of tables in SQL Server Express

What is the best way to encrypt columns in SQL Server 2005 Express edition so that no one can steal our database design? Thanks
1
vote
3answers
187 views

SQL Server 15MM rows, simple COUNT query. 15+ seconds?

We took over a website from another company after a client decided to switch. We have a table that grows by about 25k records a day, and is currently at 15MM records. The table looks something like: ...
1
vote
3answers
2k views

Convert SQL Server Express 2005 .mdf to 2008 .mdf?

Hi I have a Visual Studio solution and an ASP.NET MVC project that uses a SQL Server Express 2005 database file in the App_Data. I want to know how I can upgrade this file so it works for SQL Server ...
1
vote
1answer
424 views

How do I copy records from one database to another?

I need to pull data from one SQL 2005 Express database to another and I need to do this periodically. It is not a straight copy from one table to another, but I would use different views from the ...
1
vote
2answers
381 views

SQL Dependency with SQL Server express 2005

Is it possible to use SQL Dependency with SQL Server Express 2005 which comes with VS 2008?
1
vote
2answers
552 views

SQL Server - can't do COUNT on DATEDIFF without doing CREATE VIEW

I am trying to get some information on the differences in two dates and how often that difference has occurred. I can use: SELECT DATEDIFF (day, db1.dbo.t1.Date1, db2.dbo.t2.Date2) AS Days FROM ...
1
vote
7answers
2k views

Delete rows from multiple tables using a single query (SQL Express 2005) with a WHERE condition

This is the query I'm using: DELETE TB1.*, TB2.* FROM TB1 INNER JOIN TB2 ON TB1.PersonID = TB2.PersonID WHERE (TB1.PersonID)='2' It's working fine in MS Access but getting error (Incorrect syntax ...
1
vote
2answers
205 views

Axapta v3.0 with SQL 2005?

I managed to find an old Axapta version to practice some programming and learn Axapta a little. The problem is I can't get it started. I had installed SP1-2-3 and started it, it is supposed to create ...
1
vote
3answers
170 views

LINQtoSQL Not saving to database,but changes show in app

Hey all, I have a linq app using C# express2008 and sqlserver express 2005 (mdf file connection) I followed the regular dml generation and vanilla datacontext. However i created a repository class to ...
1
vote
3answers
226 views

Why does this stored procedure execute quickly in Management Studio, but not in an application?

I have this query as a stored procedure: SELECT ID FROM dbo.tblRentalUnit WHERE (NOT EXISTS (SELECT 1 AS Expr1 FROM dbo.tblTenant WHERE ...
1
vote
2answers
3k views

Adding a database to my Visual Studio 2008 project says I need sql server express?

When I try to add a new Sql Server Database file to my Visual Studio project, it tells me that I need to have Sql Server 2005 Express installed even though I have Sql Server 2005 Developer already? ...
1
vote
3answers
167 views

Is there a simple tool for adding users to a SQL Server database?

I'm looking for a simple tool, preferably one that I can redistribute with my application, that non-technical end-users can use to add users (and logins if necessary) to a particular SQL Server ...
1
vote
1answer
2k views

InvalidOperationException when executing SqlCommand with transaction

I have this code, running parallel in two separate threads. It works fine for a few times, but at some random point it throws InvalidOperationException: The transaction is either not associated with ...
1
vote
1answer
2k views

SQL Server 2005 Express in VMware causing very high CPU load

I'm having the problems described in KB937745 - very high CPU usage and the Application Log is reporting something like this: The client was unable to reuse a session with SPID SPID, which had been ...
1
vote
4answers
649 views

SQL2005 Express slow from remote VB6 application

I have a legacy VB6 application that was built using MSDE. As many client's database grow towards the MSDE 2 GB limit they are upgraded to SQL 2005 Express. This has proven very successful until ...
0
votes
1answer
20 views

installation of SQL Server 2005 Express edition in Windows 7 [closed]

I recently installed VS 2008 express edition on windows 7(32 bit system). Then installed SQL Server 2005 SP3 Express edition. But the problem is I am not able to create a database in my SQL Server (I ...
0
votes
2answers
44 views

Transaction isolation and reading from multiple tables on SQL Server Express and SQL Server 2005

I have a database with a main table (lets call it Owner) and several sub tables with holdings (like Cars, Books etc). For example: Owner has columns: owner_id, name Cars has columns: owner_id ...
0
votes
1answer
60 views

windows 7, php 5.3, when fetching binary data with sqlsrv from mssql the data is doubled

ok, so I have images on a MSSQL 2005 (express) server which I want to write to files. with the same piece of code, on linux it works fine, on windows it writes the data twice in the file ...
0
votes
2answers
299 views

Error message: (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.)

I am trying to deploy my website on windows server 2003. Am i missing something or what is wrong from the following error message, how can I correct it? Thank I am having the error message: A ...
0
votes
0answers
39 views

Cannot connect to instance server on SQL Server Management Studio Express 2005

I am trying to connect to an instance server name (ComputerFullName\SQLExpress) with SQL Server Management Studio Express 2005 but it gives an error. You can see image from below link. ...
0
votes
4answers
90 views

SQL DELETE STATEMENT problem with returned rowcount

I have a statement like this: DELETE TABLENAME WHERE COLUMN = NUMBER; SELECT @@ROWCOUNT AS RC; if i run it from the code (classic asp) i get Error:Item cannot be found in the collection ...
0
votes
0answers
141 views

Create and Attach Database in SQL Server 2005 Express

I want to dynamically (through code at run time) find a SQL Server instance installed on the target PC, then create a database and finally attach my MDF file. Is it Possible? How can I do that? (I'm ...
0
votes
2answers
284 views

SQL Server: Could not find prepared statement with handle x

Recently our QA team reported a very interesting bug in one of our applications. Our application is a C# .Net 3.5 SP1 based application interacting with a SQL Server 2005 Express Edition database. By ...
0
votes
0answers
74 views

Bootstrapper Manifest Generator - Prevent installation if SQL Server is already installed

i created a package with the Bootstrapper Manifest Generate. In this package is the Microsfot SQL Server 2005 Express SP4. Everything works fine, the installation of the SQL Server SP4 starts before ...

1 2 3