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 common antipatterns you've seen (or yourself committed)?
closed as not constructive by casperOne♦ Jun 22 '12 at 17:06
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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. |
|||||||||||||||||||||
|
|
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've seen a recent spike of "One query is better than two, amiright?"
This query requires two or three different execution plans depending on the values of the parameters. Only one execution plan is generated and stuck into the cache for this sql text. That plan will be used regardless of the value of the parameters. This results in intermittent poor performance. It is much better to write two queries (one query per intended execution plan). |
|||||||||||||
|
Edited because there's so many! |
|||||||||||||||||||||
|
|
Don't have to dig deep for it: Not using prepared statements. |
|||||
|
|
||||
|
|
|
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 |
|||||||||||||||||||||
|
|
The ones that I dislike the most are
|
|||||||||
|
|
Overuse of temporary tables and cursors. |
|||||
|
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). |
|||||||||
|
|
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. |
|||||||||
|
|
using @@IDENTITY instead of SCOPE_IDENTITY() Quoted from this answer :
|
||||
|
|
|
|||||||||||||
|
|
For storing time values, only UTC timezone should be used. Local time should not be used. |
|||||
|
Or, cramming everything into one line. |
||||
|
|
|
Re-using a 'dead' field for something it wasn't intended for (e.g. storing user data in a 'Fax' field) - very tempting as a quick fix though! |
||||
|
|
|
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/) |
|||||
|
|
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. |
||||
|
|
|
Identical subqueries in a query. |
|||||
|
|
Temporary Table abuse. Specifically this sort of thing:
Don't build a temporary table from a query, only to delete the rows you don't need. And yes, I have seen pages of code in this form in production DBs. |
||||
|
|
|
||||
|
|
|
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 |
|||||
|
|
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. |
||||
|
|
|
The two I find the most, and can have a significant cost in terms of performance are:
|
|||||||||
|
|
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. |
||||
|
|
|
Learning SQL in the first six months of their career and never learning anything else for the next 10 years. In particular not learning or effectively using windowing/analytical SQL features. In particular the use of over() and partition by.
See O'Reilly SQL Cookbook Appendix A for a nice overview of windowing functions. |
||||
|
|
|
I have seen too many people holding on for dear life to |
||||
|
|
|
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. |
||||
|
|
|
Joining redundant tables into a query like this:
|
|||||
|
|
re: using @@IDENTITY instead of SCOPE_IDENTITY() you should use neither; use output instead |
||||
|
|