All of us who work with relational databases have learned (or are learning) that SQL is different. Eliciting the desired results, and doing so efficiently, involves a tedious process partly characterized by learning unfamiliar paradigms, and finding out that some of our most familiar programming patterns don't work here. What are the most common antipatterns you've seen (or your self committed), whether generic or product-specific, whether in SQL statements directly, or in the ways applications build and apply them?
|
36
|
|
|
|
|
|
Here's my top 3. Number 1. Failure to specify a field list. (Edit: to prevent confusion: this is a production code rule. It doesn't apply to one-off analysis scripts - unless I'm the author.)
should be
Number 2. Using a cursor and while loop, when a while loop with a loop variable will do.
Number 3. DateLogic through string types.
Should be
|
||||||||||||||
|
|
|
I am consistently disappointed by most programmers tendency to mix their UI-logic in the data access layer:
Normally, programmers do this because they intend to bind their dataset directly to a grid, and its just convenient to have SQL Server format server-side than format on the client. Queries like the one shown above are extremely brittle because they tightly couple the data layer to the UI layer. On top of that, this style of programming thoroughly prevents stored procedures from being reusable. |
||||||||||||||||
|
|
|
Don't have to dig deep for it: Not using prepared statements. |
|||
|
|
|
Edited because there's so many! |
||||||||||||||
|
|
|
1) Not sanitizing user input (!!!!!) |
||||||
|
|
|
My bugbears are the 450 column Access tables that have been put together by the 8 year old son of the Managing Director's best friends dog groomer and the dodgy lookup table that only exists because somebody doesn't know how to normalise a datastructure properly. Typically, this lookup table looks like this: ID INT, Name NVARCHAR(132), IntValue1 INT, IntValue2 INT, CharValue1 NVARCHAR(255), CharValue2 NVARCHAR(255), Date1 DATETIME, Date2 DATETIME I've lost count of the number of clients I've seen who have systems that rely on abominations like this. |
||||
|
|
|
Using meaningless table aliases:
Makes reading a large SQL statement so much harder than it needs to be |
||||||||||||||||||||
|
|
|
Overuse of temporary tables and cursors. |
|||
|
|
|
use SP as the prefix of the store procedure name because it will first search in the System procedures location rather than the custom ones |
||||||||||||
|
|
|
and assuming that the result will be sorted by some_column. I've seen this a bit with Sybase where the assumption holds (for now). |
||||||||
|
|
|
The ones that I dislike the most are
|
||||
|
|
|
Identical subqueries in a query. |
||||||||||||
|
|
|
using @@IDENTITY instead of SCOPE_IDENTITY() Quoted from this answer :
|
|||
|
|
|
|
I need to put my own current favorite here, just to make the list complete. My favorite antipattern is not testing your queries. This applies when:
And any tests run against atypical or insufficient data don't count. If it's a stored procedure, put the test statement into a comment and save it, with the results. Otherwise, put it into a comment in the code with the results. |
||||
|
|
|
|
||||||
|
|
|
1) I don't know it's an "official" anti-pattern, but I dislike and try to avoid string literals as magic values in a database column. An example from MediaWiki's table 'image':
(I just notice different casing, another thing to avoid) I design such cases as int lookups into tables ImageMediaType and ImageMajorMime with int primary keys. 2) date/string conversion that relies on specific NLS settings
without format identifier |
|||
|
|
|
Contrarian view: over-obsession with normalization. Most SQL/RBDBs systems give one lots of features (transactions, replication) that are quite useful, even with unnormalized data. Disk space is cheap, and sometimes it can be simpler (easier code, faster development time) to manipulate / filter / search fetched data, than it is to write up 1NF schema, and deal with all the hassles therein (complex joins, nasty subselects, etc). I have found the over-normalized systems are often premature optimization, especially during early development stages. (more thoughts on it... http://writeonly.wordpress.com/2008/12/05/simple-object-db-using-json-and-python-sqlite/) |
||||
|
|
|
The two I find the most, and can have a significant cost in terms of performance are:
|
||||||||||
|
|
|
|
|||
|
|
Putting stuff in temporary tables, especially people who switch from SQL Server to Oracle have a habit of overusing temporary tables. Just use nested select statements. |
|||
|
|
|
|
I just put this one together, based on some of the SQL responses here on SO. It is a serious antipattern to think that triggers are to databases as event handlers are to OOP. There's this perception that just any old logic can be put into triggers, to be fired off when a transaction (event) happens on a table. Not true. One of the big differences are that triggers are synchronous - with a vengeance, because they are synchronous on a set operation, not on a row operation. On the OOP side, exactly the opposite - events are an efficient way to implement asynchronous transactions. |
|||
|
|
|
|
Or, cramming everything into one line. |
|||
|
|
|
Temporary Table abuse. Specifically this sort of thing:
Dont build a temporary table from a query, only to delete the rows you dont need. And yes, I have seen pages of code in this form in production DBs. |
|||
|
|
|
|
Using SQL as a glorified ISAM (Indexed Sequential Access Method) package. In particular, nesting cursors instead of combining SQL statements into a single, albeit larger, statement. This also counts as 'abuse of the optimizer' since in fact there isn't much the optimizer can do. This can be combined with non-prepared statements for maximum inefficiency:
The correct solution (almost always) is to combine the two SELECT statements into one:
The only advantage to the double loop version is that you can easily spot the breaks between values in Table1 because the inner loop ends. This can be a factor in control-break reports. Also, sorting in the application is usually a no-no. |
||||
|
|
|
Maybe not an anti pattern but it annoys me is when DBA's of certain DB's (ok I'm talking about Oracle here) write SQL Server code using Oracle style and code conventions and complain when it runs so bad. Enough with the cursors Oracle people! SQL is meant to be set based. |
||||||||
|
|
|
Just to support Point 1 of David's answer check out this example of situation when using select * may produce some unexpected results |
|||
|
|
|
|
Joining redundant tables into a query like this:
|
|||
|
|
|
|
For storing time values, only UTC timezone should be used. Local time should not be used. |
|||
|
|
|
SELECT * FROM TABLE;
|
||||||||||||
|
|
|
Having 1 table
Instead of having 3 tables code, value and code_value You never know when you may have need more than 10 couples code, value. You don't waste disk space if you only need one couple. |
|||
|
|
