SQL Server is a relational database management system from Microsoft. Use this tag for all SQL Server editions including Compact, Express and Azure.
207
votes
84answers
16k views
Hidden Features of SQL Server
What are some hidden features of SQL Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody ...
196
votes
21answers
68k views
Parameterizing an SQL IN clause?
How do I parameterize a query containing an IN clause with a variable number of arguments, like this one?
select * from Tags
where Name in ('ruby','rails','scruffy','rubyonrails')
order by Count ...
164
votes
14answers
248k 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 ...
140
votes
46answers
9k views
What are the pros and cons to keeping SQL in Stored Procs versus Code
What are the advantages/disadvantages of keeping SQL in your C# source code or in Stored Procs? I've been discussing this with a friend on an open source project that we're working on (C# ASP.NET ...
119
votes
6answers
60k views
Can foreign key constraints be temporarily disabled using T-SQL?
Are disabling and enabling foreign key constraints supported in SQL Server? Or is my only option to 'drop and then re-'create' the constraints?
119
votes
28answers
20k views
How do I version my MS SQL database in SVN?
I've been wanting to get my databases under version control. Does anyone have any advice or recommended articles to get me started?
I'll always want to have at least some data in there (as alumb ...
117
votes
14answers
128k views
How to check if column exists in SQL Server table
I need to add a specific column if it does not exist. I have something like this, but it always returns false.:
IF EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = ...
116
votes
15answers
187k views
Add column, with default value, to existing table in SQL Server
How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?
106
votes
34answers
22k views
Table Naming Dilemma: Singular vs. Plural Names
Convention has it that table names should be the singular of the entity that they store attributes of.
I dislike any T-SQL that requires square brackets around names, but I have renamed a Users ...
104
votes
24answers
4k views
What resources exist for Database performance-tuning?
What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area?
The idea of this question is to collect the shed load of resources that ...
98
votes
7answers
87k views
SQL Server UPDATE from SELECT
In SQL server you can insert into a table using a select statement.
INSERT INTO table(col,col2,col3)
SELECT col,col2,col3 FROM other_table WHERE sql = 'cool'
How can I update via a select as well ...
98
votes
17answers
31k views
SQL - How can I remove duplicate rows?
What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)?
The rows of course will not be perfect duplicates because of the existence of the RowID identity field.
...
95
votes
19answers
6k views
SQL to determine minimum sequential days of access?
The following User History table contains one record for every day a given user has accessed a website (in a 24 hour UTC period). It has many thousands of records, but only one record per day per ...
90
votes
6answers
31k views
When should I use Cross Apply over Inner Join?
What is the main purpose of using CROSS APPLY?
I have read (vaguely, through posts on the Internet) that cross apply can be more efficient when selecting over large data sets if you are partitioning. ...
86
votes
14answers
50k views
SQL - when should you use “with (nolock)”
Can someone explain the implications of using "with (nolock)" on queries, when you should/shouldn't use it?
For example, if you have a banking application with high transaction rates and a lot of ...
79
votes
11answers
53k views
What is the difference between varchar and nvarchar?
Is it just that nvarchar supports multibyte characters? If that is the case, is there really any point, other than storage concerns, to using varchars?
78
votes
11answers
46k views
Should I use != or <> for not equal in TSQL?
I have seen SQL that uses both != and <> for not equal. What is the prefigured syntax and why?
I like != because <> reminds me of Visual Basic.
77
votes
6answers
20k views
Best way to get identity of inserted row?
What is the best way to get identity of inserted row?
I know about @@IDENTITY and IDENT_CURRENT and SCOPE_IDENTITY but don't understand the pros and cons attached to each.
Can someone please explain ...
77
votes
5answers
54k views
I get a “An attempt was made to load a program with an incorrect format” error on a SQL Server replication project
The exact error is as follows
"Could not load file or assembly 'Microsoft.SqlServer.Replication, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. An ...
69
votes
4answers
73k views
SQL Server Text type vs. varchar data type
I have variable length character data and want to store in SQL Server (2005) database. I want to learn some best practices about how to choose TEXT SQL type or choose VARCHAR SQL type, pros and cons ...
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 ...
66
votes
13answers
232k views
How do you perform an IF…THEN in an SQL SELECT?
How do I perform an IF...THEN in an SQL SELECT statement?
For example;
SELECT IF(Obsolete = 'N' or InStock = 'Y';1;0) as Salable, * FROM Product
65
votes
15answers
47k views
Is there a Max function in SQL Server that takes two values like Math.Max in .NET?
I want to write a query like this:
SELECT o.OrderId, MAX(o.NegotiatedPrice, o.SuggestedPrice)
FROM Order o
But this isn't how the MAX function works, right? It is an aggregate function so it ...
64
votes
9answers
13k views
Count(*) vs Count(1)
Just wondering if any of you guys use Count(1) over Count(*) and if there is a noticeable difference in performance or if this is just a legacy habit that has been brought forward from days gone past?
...
64
votes
7answers
67k views
SQL Server: Check if table exists
I would like this to be the ultimate discussion on how to check if a table exists in SQL Server 2000/2005 using SQL Statement.
When you Google for the answer, you get so many different answers. Is ...
63
votes
5answers
137k views
SQL update from one Table to another based on a ID match
I realy hope someone can help me with this. I have a databse with Account Numbers and card Numbers that I match to a file to update any card numbers to account number so I only work with account ...
63
votes
18answers
50k views
Solutions for INSERT OR UPDATE on SQL Server
Assume a table structure of MyTable(KEY, datafield1, datafield2...)
Often I want to either update an existing record, or insert a new record if it doesn't exist.
essentially
if (key exists)
Run ...
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 ...
60
votes
9answers
11k views
Does a foreign key automatically create an index?
MS SQL Server 2000
I feel silly for asking this question, but I've been told that if I foreign key two tables, that SQL Server will create something akin to an index in the child table. I have a ...
60
votes
31answers
7k views
SQL - What are your favorite performance tricks? [closed]
When you have a query or stored procedure that needs performance tuning, what are some of the first things you try?
59
votes
5answers
51k views
How do I save a stream to a file?
I have a StreamReader object that I initialized with a stream, now I want to save this stream to disk (the stream may be a .gif or .jpg or .pdf).
Existing Code:
StreamReader sr = new ...
56
votes
21answers
2k views
Avoiding SQL injection without parameters
We are having another discussion here at work about using parametrized sql queries in our code. We have two sides in the discussion: Me and some others that say we should always use parameters to ...
56
votes
4answers
29k views
SQL Server Profiler - How to filter trace to only display events from one database?
How do I limit a SQL Server Profiler trace to a specific database? I can't see how to filter the trace to not see events for all databases on the instance I connect to.
54
votes
8answers
7k views
SET NOCOUNT ON usage
Inspired by this question where there are differing views on SET NOCOUNT...
Should we use SET NOCOUNT ON for SQL Server? If not, why not?
What it does Edit 6, on 22 Jul 2011
It suppresses the ...
53
votes
10answers
3k views
Preferred Method of Storing Passwords In Database
What is your preferred method/datatype for storing passwords in a database (preferably SQL Server 2005). The way I have been doing it in several of our applications is to first use the .NET encryption ...
52
votes
17answers
13k views
Are there any disadvantages to always using nvarchar(MAX)?
In SQL Server 2005, are there any disadvantages to making all character fields nvarchar(MAX) rather than specifying a length explicitly, e.g. nvarchar(255)? (Apart from the obvious one that you aren't ...
50
votes
17answers
134k views
concatenate many rows into a single text string?
Consider a table holding names, with three rows:
Peter
Paul
Mary
Is there an easy way to turn this into a single string of Peter, Paul, Mary?
49
votes
5answers
37k views
Altering a column: null to not null
I have a table that has several nullable integer columns. This is undesirable for several reasons, so I am looking to update all nulls to 0 and then set these columns to "NOT NULL." Aside from ...
49
votes
19answers
7k views
What's the best practice for primary keys in tables?
When designing tables, I've developed a habit of having one column that is unique and that I make the primary key. This is achieved in three ways depending on requirements:
Identity integer column ...
49
votes
15answers
51k views
Pad a varchar on the left to a certain length?
As compared to say:
REPLICATE(@padchar, @len - LEN(@str)) + @str
49
votes
10answers
28k views
What's the difference between a temp table and table variable in SQL Server?
In SQL Server 2005, we can create temp tables one of two ways:
declare @tmp table (Col1 int, Col2 int);
or
create table #tmp (Col1 int, Col2 int);
What are the differences between the two? I ...
48
votes
4answers
3k views
What is the significance of 1/1/1753 in SQL Server?
Why 1753? What do they have against 1752? My great great great great great great great grandfather would be very offended.
48
votes
11answers
12k views
Insert Update stored proc on SQL Server
I've written a stored proc that will do an update if a record exists, otherwise it will do an insert. It looks something like this:
update myTable set Col1=@col1, Col2=@col2 where ID=@ID
if ...
45
votes
9answers
2k views
Why are composite primary keys still around?
I'm assigned to migrate a database to a mid-class ERP.
The new system uses composite primary keys here and there, and from a pragmatic point of view, why?
Compared to autogenerated IDs, I can only ...
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
1answer
15k views
Sleep Command in T-SQL?
Is there to way write a T-SQL command to just make it sleep for a period of time? I am writing a web service asynchronously and I want to be able to run some tests to see if the asynchronous pattern ...
45
votes
13answers
13k views
What is the best way to version control my SQL server stored procedures?
What is the best way to version control my database objects? I'm using Visual studio 2005/2008 and SQL server 2005. I would prefer a solution which can be used with SVN.
45
votes
12answers
20k views
Is there a way to create a SQL Server function to “join” multiple rows from a subquery into a single delimited field?
To illustrate, assume that I have two tables as follows:
VehicleID Name
1 Chuck
2 Larry
LocationID VehicleID City
1 1 New York
2 1 Seattle
3 ...
44
votes
4answers
2k views
What is this hacker trying to do?
If you do a search for:
http://www.google.co.uk/search?q=0x57414954464F522044454C4159202730303A30303A313527&hl=en&start=30&sa=N
you will see a lot of examples of an attempted hack along ...