Use this tag for questions specific to the 2005 version of Microsoft's SQL Server.
164
votes
14answers
249k views
How to SELECT * INTO [temp table] FROM [Stored Procedure]
How do I do a SELECT * INTO [temp table] FROM [Stored Procedure]? Not FROM [Table] and without defining [temp table]?
Select all data from BusinessLine into tmpBusLine works fine.
select * into ...
69
votes
23answers
15k views
Diagnosing Deadlocks in SQL Server 2005
We're seeing some pernicious, but rare, deadlock conditions in the Stack Overflow SQL Server 2005 database.
I attached the profiler, set up a trace profile using this excellent article on ...
67
votes
12answers
34k views
varchar vs nvarchar performance
I'm working on a database for a small web app at my school using SQL Server 2005. I see a couple of schools of thought on the issue of varchar vs nvarchar:
Use varchar unless you deal with a lot of ...
63
votes
20answers
140k views
How do you clear the transaction log in a SQL Server 2005 database?
I'm not a SQL expert, and I'm reminded of the fact every time I need to do something beyond the basics. I have a test database that is not large in size, but the transaction log definitely is. How do ...
48
votes
11answers
72k views
Advantages of SQL Server 2008 over SQL Server 2005?
What are the key differences between Microsoft's SQL Server 2005 and SQL Server 2008?
Are there any compelling reasons for upgrading (any edition, as I have a customer with multiple editions)? Or ...
45
votes
10answers
35k views
What represents a double in sql server?
I have a couple of properties in C# which are double and I want to store these in a table in SQL Server, but noticed there is no double type, so what is best to use, decimal or float?
This will store ...
45
votes
4answers
9k views
Using SQL Server 2008 and SQL Server 2005 and date time
I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error.
The version of SQL Server ...
43
votes
2answers
23k views
C# Equivalent of SQL Server 2005 DataTypes
For the following SQL Server 2005 datatypes, what would be the corresponding datatype in C#?
Exact Numerics
bigint
numeric
bit
smallint
decimal
smallmoney
int
tinyint
money
Approximate Numerics
...
43
votes
9answers
50k views
T-SQL: Opposite to string concatenation - how to split string into multiple records
I have seen a couple of questions related to string concatenation in SQL.
I wonder how would you approach the opposite problem: splitting coma delimited string into rows of data:
Lets say I have ...
41
votes
10answers
52k views
Cannot truncate table because it is being referenced by a FOREIGN KEY constraint?
Using MSSQL2005, Can I truncate a table with a foreign key constraint if I first truncate the child table(the table with the primary key of the FK relationship)?
I know I can use a DELETE without a ...
40
votes
15answers
47k views
How do you kill all current connections to a SQL Server 2005 database?
I want to rename a database, but keep getting the error that 'couldn't get exclusive lock' on the database, which implies there is some connection(s) still active.
How can I kill all the connections ...
35
votes
15answers
4k views
Database Deployment Strategies (SQL Server)
I am looking for a way to do daily deployments and keep the database scripts in line with releases.
Currently, we have a fairly decent way of deploying our source, we have unit code coverage, ...
33
votes
6answers
6k views
nvarchar(max) vs NText
What are the advantages and disadvantages of using the nvarchar(max) vs. NText data types in SQL Server? I don't need backward compatibility, so it is fine that nvarchar(max) isn't supported in older ...
31
votes
8answers
13k views
What good are SQL Server schemas?
I'm no beginner to using SQL databases, and in particular SQL Server. However, I've been primarily a SQL 2000 guy and i've always been confused by schemas in 2005+. Yes, I know the basic definition ...
31
votes
8answers
20k views
Simulating group_concat MySQL function in MS SQL Server 2005?
I'm trying to migrate a MySQL-based app over to MS Sql Server 2005 (not by choice, but that's life).
In the original app, we used almost entirely ANSI-SQL compliant statements, with one significant ...
29
votes
5answers
23k views
How do you specify a different port number in SQL Management Studio?
I am trying to connect to a Microsoft SQL 2005 server which is not on port 1433. How do I indicate a different port number when connecting to the server using SQL management Studio?
Thank you,
...
28
votes
11answers
3k views
Images in database vs file system
We have a project coming up where we will be building a whole backend CMS system that will power our entire extranet and intranet with one package. The question I have been trying to find an answer to ...
28
votes
12answers
34k views
SQL Server 2005 drop column with constraints
I have a column with a "DEFAULT" constraint. I'd like to create a script that drops that column.
The problem is that it returns this error:
Msg 5074, Level 16, State 1, Line 1
The object ...
27
votes
10answers
13k views
What's the fastest way to bulk insert a lot of data in SQL Server (C# client)
I am hitting some performance bottlenecks with my C# client inserting bulk data into a SQL Server 2005 database and I'm looking for ways in which to speed up the process.
I am already using the ...
26
votes
10answers
104k views
SQL Server “AFTER INSERT” trigger doesn't see the just-inserted row
Consider this trigger:
ALTER TRIGGER myTrigger
ON someTable
AFTER INSERT
AS BEGIN
DELETE FROM someTable
WHERE ISNUMERIC(someField) = 1
END
I've got a table, someTable, and I'm ...
24
votes
6answers
11k views
How can I do an UPDATE statement with JOIN in SQL?
I need to update table in SQL Server 2005 with data from its 'parent' table, see below:
sale
---------
id (int)
udid (int)
assid (int)
ud
---------
id (int)
assid (int)
sale.assid contains the ...
23
votes
4answers
861 views
How to implement badges?
I've given some thought to implementing badges (just like the badges here on Stack Overflow) and think it would be difficult without Windows services, but I'd like to avoid that if possible.
I came ...
23
votes
6answers
6k views
How do I create unique constraint that also allows nulls in sql server
The question is quite simple, as the title.
Added a column to table
I want a unique constraint , the column will insert guids, but to allow for existing data before column was added I need to allow ...
23
votes
6answers
3k views
Paging SQL Server 2005 Results
How do I page results in SQL Server 2005?
I SQL Server 2000, there was no reliable way todo this but I'm now wondering if SQL Server 2005 has any built in method.
What I mean by paging is, for ...
22
votes
3answers
31k views
SQL Equivalent of COUNTIF()
I'm building a query with a GROUP BY clause that needs the ability to count records based only on a certain condition (field value is equal to 1).
SELECT
UID, COUNT(UID) AS TotalRecords, ...
22
votes
6answers
83k views
How do I check if a Sql server string is null or empty
I want to check for data but ignore it if it's null or empty. Currently the query is as follows...
Select
Coalesce(listing.OfferText, company.OfferText, '') As Offer_Text,
from ...
22
votes
8answers
7k views
SQL Identity (autonumber) is Incremented Even with a Transaction Rollback
I have a .net transaction with a SQL insert to a MS SQL 2005 DB. The table has an identity primary key.
When an error occurs within the transaction, Rollback() is called. The row inserts are rolled ...
22
votes
9answers
41k views
SQL Server 2005 - Export table programatically (run a .sql file to rebuild it)
I have a database with a table Customers that have some data
I have another database in the office that everything is the same, but my table Customers is empty
How can I create a sql file in SQL ...
21
votes
8answers
2k views
Is too many Left Joins a code smell?
If you have for example > 5 left joins in a query is that a code smell that there is ...
something wrong with your design?
you're doing too much in one query?
you're database is too normalized?
20
votes
17answers
39k views
SELECT FOR UPDATE with SQL Server
I'm using a Microsoft SQL Server 2005 database with isolation level READ_COMMITTED and READ_COMMITTED_SNAPSHOT=ON.
Now I want to use:
SELECT * FROM <tablename> FOR UPDATE
...so that other ...
20
votes
5answers
2k views
Indexed View vs Indexes on Table
I have the following table
EVENT_LOG:
EVENT_ID: pk, int, not null
TYPEID: fk, int, not null
CATEGORYID: fk, int, null
SOURCE: varchar(255), null
DESCRIPTION: varchar(4000), null
CREATED: datetime, ...
20
votes
9answers
47k views
Insert all values of a table into another table in SQL
I am trying to insert all values of one table into another. But the insert statement accepts values, but i would like it to accept a select * from the initial_Table. Is this possible?
20
votes
8answers
7k views
SQL Server - where is “sys.functions”?
SQL Server 2005 has great sys.XXX views on the system catalog which I use frequently.
What stumbles me is this: why is there a "sys.procedures" view to see info about your stored procedures, but ...
20
votes
5answers
21k views
Create a date with T-SQL
I am trying to convert a date with individual parts such as 12, 1, 2007 into a datetime in SQL Server 2005. I have tried the following:
CAST(DATEPART(year, DATE)+'-'+ DATEPART(month, DATE) +'-'+ ...
19
votes
7answers
13k views
How to store directory / hierarchy / tree structure in the database?
How do i store a directory / hierarchy / tree structure in the database? Namely MSSQL Server.
@olavk: Doesn't look like you've seen my own answer. The way i use is way better than recursive queries ...
18
votes
23answers
9k views
Anyone know of any good Database Diff tools?
I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool?
EDIT: for sqlserver 2005
17
votes
3answers
4k views
Which is better: Bookmark/Key Lookup or Index Scan
I know that an index seek is better than an index scan, but which is preferable in SQL Server explain plans: Index seek or Key Lookup (Bookmark in SQL Server 2000)?
Please tell me they didn't change ...
17
votes
4answers
33k views
SQL update query using joins
I have to update a field with a value which is returned by a join of 3 tables.
Example:
select
im.itemid
,im.sku as iSku
,gm.SKU as GSKU
,mm.ManufacturerId as ManuId
...
17
votes
5answers
14k views
Turn off constraints temporarily
I'm looking the way to temporarily turn off all DB's constraints (eg table relationships)
I need to copy (using INSERTs) one DBs tables to another DB
I know I can archive that by executing commands ...
17
votes
5answers
44k views
Insert Picture into SQL Server 2005 Image Field using only SQL
Using Ms SQL Server 2005 and Management Studio how do I insert a picture into an Image type field of a table?
Most importantly how do I verify if it is there?
17
votes
5answers
49k views
Convert SQL server datetime fields to compare date parts only, with indexed lookups
I've been doing a convert(varchar,datefield,112) on each date field that I'm using in 'between' queries in SQL server to ensure that I'm only accounting for dates and not missing any based on the time ...
17
votes
11answers
15k views
SQL Server Management Studio 2008 Intellisense
I just installed SQL Server Express 2008 because of intellisense feature. It worked at first but than it stopped working. Looking for the option to check and later consulting Google I have found that ...
17
votes
4answers
33k views
Can I use SQL Server Management Studio 2005 for 2008 DB?
I am looking to manage a SQL Server 2008 DB using Management Studio 2005. The reason for this is because our server is a 64-bit machine and we only have the 64-bit version of the software.
Is this ...
16
votes
4answers
632 views
How do you unit test your T-SQL
How do you unit test your T-SQL? Which libraries/tools do you use?
What percentage of your code is covered by unit tests and how do you measure it?
How do you decide which modules to unit test first?
...
16
votes
5answers
4k views
Atomic UPSERT in SQL Server 2005
What is the correct pattern for doing an atomic "UPSERT" (UPDATE where exists, INSERT otherwise) in SQL Server 2005?
I see a lot of code on SO (e.g. see ...
16
votes
16answers
9k views
Natural (human alpha-numeric) sort in Microsoft SQL 2005
We have a large database on which we have DB side pagination. This is quick, returning a page of 50 rows from millions of records in a small fraction of a second.
Users can define their own sort, ...
15
votes
4answers
5k views
What is the equivalent for LOCK_ESCALATION = TABLE in SQL Server 2005?
I have a script that was generated in SQL Server 2008, but I need to execute it against a SQL Server 2005 database.
What would an equivalent statement for the following be in SQL Server 2005?
ALTER ...
15
votes
9answers
31k views
How to export SQL Server 2005 query to CSV
I want to export some SQL Server 2005 data to CSV format (comma-separated with quotes). I can think of a lot of complicated ways to do it, but I want to do it the right way. I've looked at bcp, but I ...
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 ...
15
votes
4answers
8k views
Dynamic SELECT TOP @var In SQL Server
How can I have a dynamic variable setting the amount of rows to return in SQL Server? Below is not valid syntax in SQL Server 2005+:
DECLARE @count int
SET @count = 20
SELECT TOP @count * FROM ...