SQL Server is a relational database management system from Microsoft. Use this tag for all SQL Server editions including Compact, Express, Azure, FastTrack and PDW.

learn more… | top users | synonyms (6)

434
votes
12answers
433k views

UPDATE from SELECT using SQL Server

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 ...
413
votes
17answers
478k 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?
368
votes
17answers
545k 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 ...
340
votes
13answers
258k 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 = ...
336
votes
27answers
122k 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 ...
267
votes
7answers
138k 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?
245
votes
40answers
55k 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 ...
241
votes
19answers
113k views

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. ...
223
votes
13answers
566k 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
210
votes
46answers
17k 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 ...
210
votes
11answers
160k 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?
204
votes
7answers
97k 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. ...
196
votes
8answers
158k 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 ...
193
votes
7answers
84k 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 ...
189
votes
11answers
163k views

Should I use != or <> for not equal in TSQL? [duplicate]

Possible Duplicate: Testing for inequality in T-SQL I have seen SQL that uses both != and <> for not equal. What is the prefigured syntax and why? I like != because <> reminds me of ...
181
votes
11answers
185k 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 ...
165
votes
7answers
167k views

Left join and Left outer join in SQL Server

What is the difference between left join and left outer join?
163
votes
9answers
46k 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? ...
162
votes
9answers
297k views

SQL update from one Table to another based on a ID match

I have a database with account numbers and card numbers. I match these to a file to update any card numbers to the account number, so that I am only working with account numbers. I created a view ...
160
votes
4answers
147k 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 ...
160
votes
26answers
33k views

How do I version my SQL Server database in SVN? [closed]

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 ...
159
votes
13answers
237k 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
150
votes
5answers
100k 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. ...
150
votes
25answers
6k 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 ...
149
votes
14answers
105k 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 ...
139
votes
19answers
109k 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 ...
139
votes
11answers
79k 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 ...
134
votes
18answers
90k 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 ...
125
votes
4answers
137k views

SQL Server Text type vs. varchar data type [closed]

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 ...
125
votes
10answers
118k views

What is the difference between char, nchar, varchar, and nvarchar in SQL Server?

What does it mean by nvarchar? What is the difference between char, nchar, varchar, and nvarchar in SQL Server?
124
votes
13answers
136k 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 ...
123
votes
14answers
211k views

Split string in SQL

Using SQL Server 2005, how do I split a string so I can access item x? For example, take the string "Hello John Smith". How can I split the string by a space and access the item at index 1 which ...
122
votes
5answers
56k 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.
121
votes
6answers
61k views

Difference between JOIN and INNER JOIN

Both these joins will give me the same results: SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK vs SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTable.FK Is there ...
118
votes
8answers
162k views

Inserting multiple rows in a single SQL query?

I have multiple set of data to insert at once, say 4 rows. My table has three columns: Person, Id and Office. Can I insert all 4 rows in a single SQL statement?
116
votes
4answers
14k 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.
116
votes
9answers
27k 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 ...
114
votes
3answers
88k views

MySQL: @variable vs. variable. Whats the difference?

In another question I posted someone told me that there is a difference between: @variable and: variable in MySQL. He also mentioned how MSSQL has batch scope and MySQL has session scope. Can ...
113
votes
19answers
7k 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 ...
112
votes
13answers
97k views

Function vs. Stored Procedure in SQL Server

I've been learning Functions and Stored Procedure for quite a while but I don't know why and when exactly I should use functions or stored procedure instead of one another. They look same to me maybe ...
112
votes
19answers
29k 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 ...
109
votes
6answers
84k 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 ...
108
votes
11answers
166k views

SQL Server: Database stuck in “Restoring” state

i backed up a data: BACKUP DATABASE MyDatabase TO DISK = 'MyDatabase.bak' WITH INIT --overwrite existing And then tried to restore it: RESTORE DATABASE MyDatabase FROM DISK = 'MyDatabase.bak' ...
108
votes
17answers
113k 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 ...
108
votes
2answers
39k 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 ...
102
votes
15answers
76k views

What is the best way to auto-generate INSERT statements for a SQL Server table?

We are writing a new application, and while testing, we will need a bunch of dummy data. I've added that data by using MS Access to dump excel files into the relevant tables. Every so often, we want ...
102
votes
23answers
246k 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 ...
101
votes
4answers
62k views

Difference between Integrated Security = True and Integrated Security = SSPI

I have two apps, both use integrated security. One works with the values set to true in the connection string and another with the value set to SSPI. Why is the difference, as I knew about SSPI but ...
97
votes
10answers
74k 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 ...
97
votes
9answers
56k 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 ...

1 2 3 4 5 1345