Tagged Questions
T-SQL (Transact Structured Query Language) is the extension of SQL functionality supported by Sybase and Microsoft SQL Server.
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 ...
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 ...
120
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?
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.
...
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. ...
84
votes
6answers
57k views
T-SQL: Selecting rows to delete via joins
Scenario:
Let's say I have two tables, TableA and TableB. TableB's primary key is a single column (BId), and is a foreign key column in TableA.
In my situation, I want to remove all rows in TableA ...
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 ...
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
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 ...
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 ...
52
votes
4answers
41k views
Linq to Sql: Multiple left outer joins
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.
T-SQL
...
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
15answers
52k views
Pad a varchar on the left to a certain length?
As compared to say:
REPLICATE(@padchar, @len - LEN(@str)) + @str
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 ...
44
votes
18answers
6k views
Why would I ever pick CHAR over VARCHAR in SQL?
I realize that CHAR is recommended if all my values are fixed-width. But, so what? Why not just pick VARCHAR for all text fields just to be safe.
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 ...
42
votes
10answers
47k views
Best approach to remove time part of datetime in SQL Server
Which method provides the best performance when removing the time portion from a datetime field in SQL Server?
a) select DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0)
or
b) select ...
42
votes
15answers
11k views
Dynamic Sorting within SQL Stored Procedures
This is an issue that I've spent hours researching in the past. It seems to me to be something that should have been addressed by modern RDBMS solutions but as yet I have not found anything that ...
42
votes
13answers
137k views
Truncate (not round) decimal places in SQL Server
I'm trying to determine the best way to truncate or drop extra decimal places in SQL without rounding. For example:
declare @value decimal(18,2)
set @value = 123.456
This will auto round @Value ...
41
votes
8answers
44k views
Left join and Left outer join in SQL Server
What is the difference between left join and left outer join?
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 ...
38
votes
11answers
4k views
SQL: What does =* mean?
I'm trying to trace some SQL in Microsoft Server. I came across a join that is using a convention unfamiliar to me. What does "=*" mean?
WHERE table1.yr =* table2.yr -1
38
votes
21answers
4k views
Why do you create a View in a database?
When and Why does some one decide that they need to create a View in their database? Why not just run a normal stored procedure or select?
38
votes
9answers
31k views
How do you truncate all tables in a database using TSQL?
I have a test environment for a database that I want to reload with new data at the start of a testing cycle. I am not interested in rebuilding the entire database- just simply "re-setting" the data.
...
36
votes
3answers
8k views
T-SQL Cast versus Convert
What is the general guidance on when you should use CAST versus CONVERT? Is there any performance issues related to choosing one versus the other? Is one closer to ANSI-SQL?
35
votes
7answers
2k views
Is there a combination of “LIKE” and “IN” in SQL?
In SQL I (sadly) often have to use "LIKE" conditions due to databases that violate nearly every rule of normalization. I can't change that right now. But that's irrelevant to the question.
Further, I ...
34
votes
5answers
59k 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 ...
33
votes
13answers
56k views
List of all index & index columns in SQL Server DB
How do I get a list of all index & index columns in SQL Server 2005+? The closest I could get is:
select s.name, t.name, i.name, c.name
from sys.tables t
inner join sys.schemas s on t.schema_id ...
33
votes
27answers
11k views
SQL Server Management Studio – tips for improving the TSQL coding process
I used to work in a place where a common practice was to use Pair Programming. I remember how many small things we could learn from each other when working together on the code. Picking up new ...
32
votes
20answers
27k views
SQL exclude a column using SELECT * [except columnA] FROM tableA?
We all know that to select all columns from a table, we can use
SELECT * FROM tableA
Is there a way to exclude column(s) from a table without specifying all the columns?
SELECT * [except columnA] ...
32
votes
10answers
56k views
How to return the date part only from a SQL Server datetime datatype
SELECT GETDATE()
Returns: 2008-09-22 15:24:13.790
I want that date part without the time part: 2008-09-22 00:00:00.000
31
votes
9answers
11k views
In SQL, how can you “group by” in ranges?
Suppose I have a table with a numeric column (lets call it "score").
I'd like to generate a table of counts, that shows how many times scores appeared in each range.
For example:
score range | ...
30
votes
4answers
40k views
How do I escape double quotes in attributes in an XML String in T-SQL?
Pretty simple question - I have an attribute that I would like to have double quotes in. How do I escape them? I've tried
\"
""
\\"
And I've made the @xml variable both xml type and varchar(max) ...
30
votes
2answers
7k views
How do I flush the PRINT buffer in TSQL?
I have a very long-running stored procedure in SQL Server 2005 that I'm trying to debug, and I'm using the 'print' command to do it. The problem is, I'm only getting the messages back from SQL Server ...
29
votes
8answers
49k views
SQL Server PIVOT examples?
Trying to find some simple SQL Server PIVOT examples. Most of the examples that I have found involve counting or summing up numbers. I just want to pivot some string data. For example, I have a ...
28
votes
5answers
28k views
Determine SQL Server Database Size
SQL Server 2005/2008 Express edition has the limitation of 4 GB per database. As far as I known the database engine considers data only, thus excluding log files, unused space, and index size.
...
28
votes
7answers
151k views
SQL: IF clause within WHERE clause
Is it possible to use an IF clause within a WHERE clause in MS SQL?
Example:
WHERE
IF IsNumeric(@OrderNumber) = 1
OrderNumber = @OrderNumber
ELSE
OrderNumber LIKE '%' + @OrderNumber + '%'
28
votes
6answers
20k views
T-SQL stored procedure that accepts multiple Id values
Is there a graceful way to handle passing a list of ids as a parameter to a stored procedure. For instance, I want departments 1, 2, 5, 7, 20 returned by my stored procedure. In the past, I have ...
27
votes
6answers
14k views
Is the NOLOCK (Sql Server hint) bad practice?
I'm in the business of making website and applicatins that are not mission critical -> eg. banking software, space flight, intensive care monitoring application, etc. You get the idea.
So, with that ...
27
votes
5answers
10k views
Parameter Sniffing (or Spoofing) in SQL Server
A while ago I had a query that I ran quite a lot for one of my users. It was still being evolved and tweaked but eventually it stablised and ran quite quickly, so we created a stored procedure from ...
26
votes
5answers
4k 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 ...
25
votes
6answers
18k views
Why use a READ UNCOMMITTED isolation level?
In plain English what are the disadvanges and advantages of using SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED in query for .NET applications and reporting services application?
25
votes
4answers
21k views
IndexOf function in t-Sql
Given an email address column, I need to find the position of the @ sign for substringing.
What is the indexof function, for strings in t-sql.
Looking for something that returns the position of a ...
24
votes
8answers
35k views
Basic differences between Oracle and SQL Server?
I am going on a job interview and have zero experience with MS SQL Server. However I have 1 year with Oracle. Is there such a huge difference between the two? What programming questions can I expect?
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 ...
24
votes
10answers
52k views
How do I delete from multiple tables using INNER JOIN in SQL server
In MySQL you can use the syntax
DELETE t1,t2
FROM table1 AS t1
INNER JOIN table2 t2 ...
INNER JOIN table3 t3 ...
How do I do the same thing in SQL Server?
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
5answers
9k views
Floor a date in SQL server
In SQL Server, how do I "floor" a DATETIME to the second/minute/hour/day/year?
Let's say that I have a date of 2008-09-17 12:56:53.430, then the output of flooring should be:
Year: 2008-01-01 ...