Use this tag for questions specific to the 2008 version of Microsoft's SQL Server.
152
votes
6answers
63k views
SQL Server datetime2 vs datetime
Which one:
datetime
datetime2
is THE recommended way to store date and time in SQL Server 2008+?
I'm aware of differences in precision (and storage space probably), but ignoring those for now, ...
122
votes
16answers
66k views
Why is SQL Server 2008 Management Studio Intellisense not working?
I'm being driven to insanity trying to figure out why Intellisense just fails to work at all. The server I'm using is local and is 2008, the database is set to 2008 compatibility, Intellisense is on ...
93
votes
6answers
20k 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 ...
85
votes
6answers
43k views
Connect different Windows User in SQL Server Management Studio (2005 or later)
Is there a way in SQL Server Management Studio 2005 (or later) to change the Windows Authentication user (as you could in SQL Server 2000 and older)?
This is the general connection properties dialog ...
83
votes
6answers
223k views
How to connect to local instance of SQL Server 2008 Express
I just installed SQL Server 2008 Express on my Vista SP1 machine. I previously had 2005 on here and used it just fine with the old SQL Server Management Studio Express. I was able to connect with no ...
80
votes
13answers
113k views
How can I truncate a datetime in SQL Server?
What's the best way to truncate a datetime value (as to remove hours minutes and seconds) in SQL Server 2008?
For example:
declare @SomeDate datetime = '2009-05-28 16:30:22'
select ...
79
votes
6answers
33k views
Entity Framework: There is already an open DataReader associated with this Command
I am using Entity Framework and occasionally i will get this error.
EntityCommandExecutionException
{"There is already an open DataReader associated with this Command which must be closed first."}
...
64
votes
6answers
129k views
Check if a row exists, otherwise insert
I need to write a T-SQL stored procedure that updates a row in a table. If the row doesn't exist, insert it. All this steps wrapped by a transaction.
This is for a booking system, so it must be ...
62
votes
9answers
39k views
A transport-level error has occurred when receiving results from the server
I'm getting a SQL Server error:
A transport-level error has occurred
when receiving results from the
server. (provider: Shared Memory
Provider, error: 0 - The handle is
invalid.)
I'm ...
59
votes
11answers
117k views
Advantages of SQL Server 2008 over SQL Server 2005? [closed]
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 ...
58
votes
6answers
23k 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 ...
56
votes
8answers
37k views
Is the NOLOCK (Sql Server hint) bad practice?
I'm in the business of making website and applications that are not mission critical -> eg. banking software, space flight, intensive care monitoring application, etc. You get the idea.
So, with that ...
55
votes
6answers
25k views
Why use the INCLUDE clause when creating an index?
While studying for the 70-433 exam I noticed you can create a covering index in one of the following two ways.
CREATE INDEX idx1 ON MyTable (Col1, Col2, Col3)
-- OR --
CREATE INDEX idx1 ON MyTable ...
52
votes
5answers
51k views
Multi-statement Table Valued Function vs Inline Table Valued Function
A few examples to show, just incase:
Inline Table Valued
CREATE FUNCTION MyNS.GetUnshippedOrders()
RETURNS TABLE
AS
RETURN SELECT a.SaleId, a.CustomerID, b.Qty
FROM Sales.Sales a INNER JOIN ...
48
votes
5answers
4k views
How would one use Lucene.NET to help implement search on a site like Stack Overflow?
I've asked a simlar question on Meta Stack Overflow, but that deals specifically with whether or not Lucene.NET is used on Stack Overflow.
The purpose of the question here is more of a ...
48
votes
6answers
2k views
Handling inheritance with overriding efficiently
I have the following two data structures.
First, a list of properties applied to object triples:
Object1 Object2 Object3 Property Value
O1 O2 O3 P1 "abc"
O1 O2 ...
47
votes
7answers
167k views
How to install sql server management studio 2008 component only [closed]
below is a list of the sql components that I installed in the Visual Studio 2010 Professional setup. Sadly, while trying to work I could not find sql server management studio 2008 .
Is there a way ...
47
votes
4answers
71k views
Sql Server add auto increment primary key to existing table
As the title, I have an existing table which is already populated with 150000 records. I have added an Id column (which is currently null).
I'm assuming I can run a query to fill this column with ...
42
votes
7answers
18k views
How Can I Log and Find the Most Expensive Queries?
The activity monitor in sql2k8 allows us to see the most expensive queries. Ok, that's cool, but is there a way I can log this info or get this info via query analyser? I don't really want to have the ...
41
votes
11answers
73k views
How to avoid the “divide by zero” error in SQL?
I hate this error message:
Msg 8134, Level 16, State 1, Line 1
Divide by zero error encountered.
What is the best way to write SQL code, so that I will never see this error message again?
I mean, ...
41
votes
9answers
64k views
Split Function equivalent in tsql?
I'm looking to split '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15...' (comma delimited) into a table or table variable.
Does anyone have a function that returns each one in a row?
40
votes
5answers
104k views
SQL Server SELECT INTO @variable?
I have the following code in one of my Sql (2008) Stored Procs which executes perfectly fine:
CREATE PROCEDURE [dbo].[Item_AddItem]
@CustomerId uniqueidentifier,
@Description ...
39
votes
11answers
59k views
How do I insert multiple rows WITHOUT repeating the “INSERT INTO dbo.Blah” part of the statement?
I know I've done this before years ago, but I can't remember the syntax, and I can't find it anywhere due to pulling up tons of help docs and articles about "bulk imports".
Here's what I want to do, ...
39
votes
5answers
11k views
SQL Server 2008 Empty String vs. Space
I ran into something a little odd this morning and thought I'd submit it for commentary.
Can someone explain why the following SQL query prints 'equal' when run against SQL 2008. The db ...
38
votes
9answers
35k views
What's the best way to store co-ordinates (longitude/latitude, from Google Maps) in SQL Server?
I'm designing a table in SQL Server 2008 that will store a list of users and a Google Maps co-ordinate (longitude & latitude).
Will I need two fields, or can it be done with 1?
What's the best ...
38
votes
4answers
21k views
How do I create a SQL table under a different schema?
This is from SQL Server 2008, ssms
When I create a table, it creates under dbo.
I would like to create it under a different schema, but when I use the 'New Table' dialog, I can never find the field ...
38
votes
5answers
59k views
select statement to find duplicates on certain fields
can you help me with a sql statements to find duplicates on multiple fields
for example in psuedo code:
select count(field1,field2,field3) from table where the combination of field1, field2, field3 ...
36
votes
6answers
15k views
varchar(max) everywhere?
Is there any problem with making all your Sql Server 2008 string columns varchar(max). My allowable string sizes are managed by the application. The database should just persist what I give it. ...
35
votes
2answers
14k views
Unique constraint on multiple columns
CREATE TABLE [dbo].[user](
[userID] [int] IDENTITY(1,1) NOT NULL,
[fcode] [int] NULL,
[scode] [int] NULL,
[dcode] [int] NULL,
[name] [nvarchar](50) NULL,
[address] ...
35
votes
7answers
42k views
How do I change db schema to dbo
I imported a bunch of tables from an old sql server (2000) to my 2008 database. All the imported tables are prefixed with my username ex: jonathan.MovieData. In the table properties it lists ...
35
votes
3answers
751 views
Why are CLR Types derived from generics not supported in SQL Server 2008 and later?
The following code implements an UDT which derives from a generic (SortedDictionary):
[Serializable]
[Microsoft.SqlServer.Server.SqlUserDefinedType(Format.UserDefined, MaxByteSize = 8000)]
public ...
33
votes
4answers
32k views
ALTER DATABASE failed because a lock could not be placed on database
I need to restart a database because some processes are not working. My plan is to take it offline and back online again.
I am trying to do this in Sql Server Management Studio 2008:
use master;
go
...
33
votes
3answers
7k views
Saving changes is not permitted in SQL Server
When I create a table in SQL Server and save it, if I try to edit the table design, like change a column type from int to real, I get this error:
Saving changes is not permitted. The change you ...
33
votes
5answers
47k views
Reverse Engineering for Database Diagramming in Visio with SQL Server 2008
I need to reverse engineer a Microsoft SQL Server 2008 in order to create a Microsoft Visio 2007 Database Model Diagram. So I choose "Reverse Engineer" from the Database menu to connect to the DB.
I ...
32
votes
8answers
67k views
SQL Server 2008: find all tables containing column with specified name
Is it possible that I can query for names of all tables which contain column with name
Like %myName%
32
votes
1answer
13k views
How can I have multiple common table expressions in a single SELECT statement?
I am in the process of simplifying a complicated select statement, so thought I would use common table expressions.
Declaring a single cte works fine.
WITH cte1 AS (
SELECT * from cdr.Location
...
31
votes
9answers
89k views
Get columns of a table SQL SERVER
How can I get the name of all columns of a table in SQL SERVER 2008?
31
votes
6answers
14k views
How to report an error from a SQL Server user-defined function
I'm writing a user-defined function in SQL Server 2008. I know that functions cannot raise errors in the usual way - if you try to include the RAISERROR statement SQL returns:
Msg 443, Level 16, ...
31
votes
1answer
8k views
Lock Escalation - What's happening here?
While altering a table (removing a column) in SQL Server 2008, I clicked the Generate Change Script button and I noticed that the change script it generated drops the column, says "go" and then runs ...
30
votes
3answers
12k views
How to catch SqlException caused by deadlock?
From a .NET 3.5 / C# app, I would like to catch SqlException but only if it is caused by deadlocks on a SQL Server 2008 instance.
Typical error message is Transaction (Process ID 58) was deadlocked ...
30
votes
14answers
132k views
Import Excel spreadsheet columns into SQL Server database
I have an Excel spreadsheet that I want to import select columns into my SQL Server 2008 database table. The wiz didn't offer that option.
Any easy code options?
30
votes
5answers
20k views
A connection was successfully established with the server, but then an error occurred during the pre-login handshake
I am getting following error when i am trying to connect Production DB from Local Environment.
I was able to connect Production DB before, but suddenly i am getting following error, any idea?
A ...
29
votes
7answers
47k views
How do I DROP multiple columns with a single ALTER TABLE statement?
I would like to write a single SQL command to drop multiple columns from a single table in one ALTER TABLE statement.
From MSDN's ALTER TABLE documentation...
DROP { [CONSTRAINT] constraint_name | ...
28
votes
3answers
48k views
Auto-increment primary key in SQL tables
Using Sql Express Management Studio 2008 GUI (not with coding), how can I make a primary key auto-incremented?
Let me explain: there is a table which has a column named "id" and the items of this ...
28
votes
3answers
8k views
Multiple INSERT statements vs. single INSERT with multiple VALUES
I'm running a performance comparison between using 1000 INSERT statements:
INSERT INTO T_TESTS (TestId, FirstName, LastName, Age)
VALUES ('6f3f7257-a3d8-4a78-b2e1-c9b767cfe1c1', 'First 0', 'Last ...
28
votes
5answers
23k views
storing passwords in SQL Server
What is the recommended practice for storing user passwords in SQL Server 2008?
I am storing user details for an intranet, and would like to get advice on best way to store a user details such as ...
28
votes
3answers
11k views
Performance of bcp/BULK INSERT vs. Table-Valued Parameters
I'm about to have to rewrite some rather old code using SQL Server's BULK INSERT command because the schema has changed, and it occurred to me that maybe I should think about switching to a stored ...
27
votes
5answers
10k views
is of a type that is invalid for use as a key column in an index
I have an error at
Column 'key' in table 'misc_info' is of a type that is invalid for use as a key column in an index.
where key is a nvarchar(max). A quick google found this. It however doesnt ...
27
votes
4answers
8k 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 ...
27
votes
2answers
11k views
Why use the SQL Server 2008 geography data type?
I am redesigning a customer database and one of the new pieces of information I would like to store along with the standard address fields (Street, City, etc.) is the geographic location of the ...


