Click here to Skip to main content
15,860,861 members
Articles / Database Development / SQL Server

SQL Server DO's and DONT's

Rate me:
Please Sign up or sign in to vote.
4.69/5 (348 votes)
8 Nov 2002CPOL9 min read 1.8M   754   233
SQL Server database best practices

Introduction

So, you are now the leader of a SQL Server based project and this is your first one, perhaps migrating from Access. Or maybe you have performance problems with your SQL Server and don't know what to do next. Or maybe you simply want to know of some design guidelines for solutions using SQL Server and designing Database Access Layers (DAL): this article is for you.

Even if you are not using SQL Server, most of these design guidelines apply to other DBMS, too: Sybase is a very similar environment for the programmer, and Oracle designs may benefit from this too. I won't show here how to use specific T-SQL tricks, nor will I give you miracle solutions for your SQL Server problem. This is by no means a complete, closed issue. What I intend to do is give you some advice for a sound design, with lessons learned through the last few years of my life, seeing the same design errors being made again and again.

DO Know Your Tools

Please, don't underestimate this tip. This is the best of all of those you'll see in this article. You'd be surprised how many SQL Server programmers don't even know all T-SQL commands and all of those effective tools SQL Server has.

"What? I need to spend a month learning all those SQL commands I'll never use???" you might say. No, you don't need to. But spend a weekend at MSDN and browse through all T-SQL commands: the mission here is to learn a lot of what can and what can't be done. And, in the future, when designing a query, you'll remember "Hey, there's this command that does exactly what I need", and then you'll refer again to MSDN to see its exact syntax.

In this article, I'll assume that you already know the T-SQL syntax or can find about it on MSDN.

DON'T Use Cursors

Let me say it again: DON'T use cursors. They should be your preferred way of killing the performance of an entire system. Most beginners use cursors and don't realize the performance hit they have. They use memory; they lock tables in weird ways, and they are slow. Worst of all, they defeat most of the performance optimization your DBA can do. Did you know that every FETCH being executed has about the same performance of executing a SELECT? This means that if your cursor has 10,000 records, it will execute about 10,000 SELECTs! If you can do this in a couple of SELECT, UPDATE or DELETE, it will be much faster.

Beginner SQL programmers find in cursors a comfortable and familiar way of coding. Well, unfortunately this leads to bad performance. The whole purpose of SQL is specifying what you want, not how it should be done.

I once rewrote a cursor-based stored procedure and substituted some code for a pair of traditional SQL queries. The table had only 100,000 records and the stored procedure used to take 40 minutes to process. You should have seen the face of the poor programmer when the new stored procedure took 10 seconds to run!

Sometimes, it's even faster to create a small application that gets all the data, processes it and updates the server. T-SQL was not done with loop performance in mind.

If you are reading this article, I need to mention: there is no good use for cursors; I have never seen cursors being well used, except for DBA work. And good DBAs, most of the time, know what they are doing. But, if you are reading this, you are not a DBA, right?

DO Normalize Your Tables

There are two common excuses for not normalizing databases: performance and pure laziness. You'll pay for the second one sooner or later; and, about performance, don't optimize what's not slow. Often, I see programmers de-normalizing databases because "this will be slow". And, more frequent than the inverse, the resulting design is slower. DBMSs were designed to be used with normalized databases, so design with normalization in mind.

DON'T SELECT *

This is hard to get used to, I know. And I confess: often I use it; but try to specify only the columns you'll need. This will:

  1. Reduce memory consumption and network bandwidth
  2. Ease security design
  3. Gives the query optimizer a chance to read all the needed columns from the indexes

DO Know How Your Data Will Be/Is Being Accessed

A robust index design is one of the good things you can do for your database. And doing this is almost an art form. Every time you add an index to a table, things get faster on SELECT, but INSERT and DELETE will be much slower. There's a lot of work in building and maintaining indexes. If you add several indexes to a table to speed your SELECT, you'll soon notice locks being held for a long time while updating indexes. So, the question is: what is being done with this table? Reading or updating data? This question is tricky, specially with the DELETE and UPDATE, because they often involve a SELECT for the WHERE part and after this, they update the table.

DON'T Create an Index on the "Sex" Column

This is useless. First, let's understand how indexes speed up table access. You can see indexes as a way of quickly partitioning a table based on a criteria. If you create an index with a column like "Sex", you'll have only two partitions: Male and Female. What optimization will you have on a table with 1,000,000 rows? Remember, maintaining an index is slow. Always design your indexes with the most sparse columns first and the least sparse columns last, e.g., Name + Province + Sex.

DO Use Transactions

Specially on long-running queries. This will save you when things get wrong. Working with data for some time, you'll soon discover some unexpected situation which will make your stored procedure crash.

DO Beware of Deadlocks

Always access your tables in the same order. When working with stored procedures and transactions, you may find this soon. If you lock table A then table B, always lock them in this very same order in all stored procedures. If you, by accident, lock table B and then table A in another procedure some day, you'll have a deadlock. Deadlocks can be tricky to find if the lock sequence is not carefully designed.

DON'T Open Large Recordsets

A common request on programming forums is: "How can I quickly fill this combo with 100,00 items?". Well, this is an error. You can't and you shouldn't. First, your user will hate browsing through 100,000 records to find the right one. A better UI is needed here, because you should ideally show no more that 100 or 200 records to your users.

DON'T Use Server Side Cursors

Unless you know what you are doing, client side cursors often (not always) put less overhead on the network and on the server, and reduce locking time.

DO Use Parametrized Queries

Sometimes, I see in programming forums, questions like: "My queries are failing with some chars, e.g. quotes. How can I avoid it?". And a common answer is: "Replace it by double quotes". Wrong. This is only a workaround and will still fail with other chars, and will introduce serious security bugs. Besides this, it will trash the SQL Server caching system, which will cache several similar queries, instead of caching only one. Learn how to use parameterized queries (in ADO, through the use of the Command Object, or in ADO.NET the SqlCommand) and never have these problems again.

DO Always Test with Large Databases

It's a common pattern programmers developing with a small test database, and the end user using large databases. This is an error: disk is cheap, and performance problems will only be noticed when it's too late.

DON'T Import Bulk Data with INSERT

Unless strictly necessary, use DTS or the BCP utility and you'll have both a flexible and fast solution.

DO Beware of Timeouts

When querying a database, the default timeout is often low, like 15 seconds or 30 seconds. Remember that report queries may run longer than this, especially when your database grows.

DON'T Ignore Simultaneous Editing

Sometimes two users will edit the same record at the same time. When writing, the last writer wins and some of the updates will be lost. It's easy to detect this situation: create a timestamp column and check it before you write. If possible, merge changes. If there is a conflict, prompt the user for some action.

DON'T Do SELECT max(ID) from Master When Inserting in a Detail Table.

This is another common mistake, and will fail when two users are inserting data at the same time. Use one of SCOPE_IDENTITY, IDENT_CURRENT, and @@IDENTITY. Avoid @@IDENTITY if possible because it can introduce some nasty bugs with triggers.

DO Avoid NULLable Columns

When possible. They consume an extra byte on each NULLable column in each row and have more overhead associated when querying data. The DAL will be harder to code, too, because every time you access this column, you'll need to check.

I'm not saying that NULLs are the evil incarnation, like some people say. I believe they can have good uses and simplify coding when "missing data" is part of your business rules. But sometimes, NULLable columns are used in situations like this:

SQL
CustomerName1
CustomerAddress1
CustomerEmail1
CustomerName2
CustomerAddress2
CustomerEmail3
CustomerName1
CustomerAddress2
CustomerEmail3

This is horrible. Please, don't do this, normalize your table. It will be more flexible and faster, and will reduce the NULLable columns.

DON'T Use the TEXT Datatype

Unless you are using it for really large data. The TEXT datatype is not flexible to query, is slow and wastes a lot of space if used incorrectly. Sometimes a VARCHAR will handle your data better.

DON'T Use Temporary Tables

Unless strictly necessary. Often a subquery can substitute a temporary table. They induce overhead and will give you a big headache when programming under COM+ because it uses a database connection pool and temporary tables will last forever. In SQL Server 2000, there are alternatives like the TABLE data type which can provide in-memory solutions for small tables inside stored procedures too.

DO Learn How to Read a Query Execution Plan

The SQL Server query analyzer is your friend, and you'll learn a lot about how it works and how the query and index design can affect performance through it.

DO Use Referential Integrity

This can be a great time saver. Define all your keys, unique constraints and foreign keys. Every validation you create on the server will save you time in the future.

Conclusion

As I've said before, this is by no means a complete SQL Server performance and best practices guide. This would take a complete book to cover. But I really believe that this is a good start, and if you follow these practices, surely you will have much less trouble in the future.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO
Brazil Brazil
I develop software since I was 11. In the past 20 years, I developed software and used very different machines and languages, since Z80 based ones (ZX81, MSX) to mainframe computers. I still have passion for ASM, though no use for it anymore.
Professionally, I developed systems for managing very large databases, mainly on Sybase and SQL Server. Most of the solutions I write are for the financial market, focused on credit systems.
To date, I learned about 20 computer languages. As the moment, I'm in love with C# and the .NET framework, although I only can say I’m very proficient at C#, VB.NET(I’m not proud of this), T/SQL, C++ and libraries like ATL and STL.
I hate doing user interfaces, whether Web based or not, and I’m quite good at doing server side work and reusable components.
I’m the technical architect and one of the authors of Crivo, the most successful automated credit and risk assessment system available in Brazil.

Comments and Discussions

 
GeneralSQL Server 2005 Pin
T.D. Ryan31-Oct-06 12:38
T.D. Ryan31-Oct-06 12:38 
GeneralText Datatype Pin
Dhaval Heruwala18-Oct-06 19:58
Dhaval Heruwala18-Oct-06 19:58 
GeneralRe: Text Datatype Pin
jezemine11-Jan-07 6:27
jezemine11-Jan-07 6:27 
GeneralRe: Text Datatype Pin
Michal Brylka9-Dec-07 8:11
Michal Brylka9-Dec-07 8:11 
QuestionCan you help me ??? Pin
khanhlan30-Sep-06 23:38
khanhlan30-Sep-06 23:38 
GeneralDON'T do SELECT max(ID) from Master when inserting in a Detail table. Pin
Mornz20-Sep-06 6:06
Mornz20-Sep-06 6:06 
Generalthanks Pin
Juraj Borza20-Sep-06 1:24
Juraj Borza20-Sep-06 1:24 
GeneralPortuguese Pin
Welliton Alves Toledo29-Jun-06 7:57
Welliton Alves Toledo29-Jun-06 7:57 
Can I give us the portuguese verison?

Thanks,

Welliton Alves Toledo
www.iconnect.com.br
GeneralGood advise... Pin
Ahfu10-Jun-06 17:25
Ahfu10-Jun-06 17:25 
GeneralIf you can to write in Spanish Pin
deimostec6-Jan-06 16:01
deimostec6-Jan-06 16:01 
GeneralRe: If you can to write in Spanish Pin
Daniel Turini8-Feb-06 1:02
Daniel Turini8-Feb-06 1:02 
GeneralWhen Cursor could be usefull Pin
kopytklm25-Oct-05 5:57
kopytklm25-Oct-05 5:57 
GeneralSP's and Temp tables Pin
Anonymous12-Sep-05 9:11
Anonymous12-Sep-05 9:11 
GeneralRe: SP's and Temp tables Pin
Anonymous12-Sep-05 11:36
Anonymous12-Sep-05 11:36 
GeneralRe: SP's and Temp tables Pin
Julien15-Mar-06 13:20
Julien15-Mar-06 13:20 
Generalselect * from [table1] Pin
Anonymous4-Aug-05 22:33
Anonymous4-Aug-05 22:33 
GeneralRe: select * from [table1] Pin
Daniel Turini5-Aug-05 1:10
Daniel Turini5-Aug-05 1:10 
Generalswitching from access to sqlserver so index ans seek not support .. help me please Pin
Anonymous1-Aug-05 18:13
Anonymous1-Aug-05 18:13 
Generalindex on the "Sex" column Pin
Beloff_P24-May-05 1:26
Beloff_P24-May-05 1:26 
GeneralRe: index on the "Sex" column Pin
Daniel Turini27-May-05 10:14
Daniel Turini27-May-05 10:14 
GeneralRe: index on the "Sex" column Pin
jeremypettit1-Dec-05 7:30
jeremypettit1-Dec-05 7:30 
GeneralUsing Text Datatype in Stored Procedure Pin
irfankhanpathan9-May-05 2:55
irfankhanpathan9-May-05 2:55 
GeneralRe: Using Text Datatype in Stored Procedure Pin
Shane Gleeson2-Apr-07 23:02
Shane Gleeson2-Apr-07 23:02 
GeneralCursors with Paging Pin
Jason Boyd18-Mar-05 9:19
Jason Boyd18-Mar-05 9:19 
GeneralRe: Cursors with Paging Pin
totig6-Apr-05 2:23
totig6-Apr-05 2:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.