Tagged Questions

84
votes
63answers
7k 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 …
22
votes
16answers
2k 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.
20
votes
5answers
2k 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 …
16
votes
4answers
470 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 …
16
votes
15answers
3k 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 …
15
votes
20answers
828 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?
15
votes
9answers
2k 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 | …
14
votes
23answers
3k 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 …
13
votes
9answers
1k views

Should I use != or <> for not equal in TSQL

I have seen Sql that uses both != and <> for not equal was curious what the prefigured syntax is and why? I like != because <> reminds me of VB
13
votes
4answers
5k views

Can foreign key constraints be temporarily disabled using TSQL?

Are disabling and enabling FK constraints supported in SQL Server? Or is my only option to 'drop and then re-'create' the constraints?
12
votes
4answers
439 views

SET NOCOUNT ON usage

Inspired by this question where there are differing views on SET NOCOUNT... General accepted best practice (I thought until this question) is to use SET NOCOUNT ON in triggers and stored procedures …
12
votes
8answers
997 views

INSERT vs INSERT INTO

I have been working with TSQL in MSSQL for some time now and somehow whenever I have to insert data into a table I tend to use syntax INSERT INTO myTable <something here> I understand that …
11
votes
6answers
5k 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 …
10
votes
11answers
655 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
10
votes
10answers
910 views

What represents a double in sql server?

I have a couple of properties in c# which are doubles 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 …

1 2 3 4 5 171 next
15 30 50 per page