up vote 562 down vote favorite
970
share [g+] share [fb]

What are common database development mistakes made by application developers?

link|improve this question
17  
Great question, I know a few DBA's who would pay you money for putting the focus on this area. – Ashley Henderson Mar 7 '09 at 16:10
3  
@le dorfier,, not really, that question focuses on poor uses of SQL itself (ie the structured query language). This question is takes a broader view of databases in general. There are some overlapping answers but I think this question even more useful. – Ashley Henderson Mar 8 '09 at 5:17
2  
Well, try to develop a database would be their first mistake... unless this is a toy app or pet project then who cares. – Stephanie Page Jun 15 '10 at 15:25
1  
RAther than close this excellent question, perhaps it shoudl be moved to ProgrammersStackExchange. Admins please do not delte this question as has been suggested, it is an excellent question with answers that application programmers need to see. – HLGEM Nov 17 '11 at 22:37
show 1 more comment
feedback

closed as not constructive by Sam Saffron, PaĆ­lo Ebermann Oct 5 '11 at 1:06

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

41 Answers

1 2

Well, I would have to say that the biggest mistake application developers make is not properly normalizing the database.

As an application developer myself, I realize the importance of proper database structure, normalization, and maintenance; I have spent countless hours educating myself on database structure and administration. In my experience, whenever I start working with a different developer, I usually have to restructure the entire database and update the app to suit because it is usually malformed and defective.

For example, I started working with a new project where the developer asked me to implement Facebook Connect on the site. I cracked open the database to see what I had to work with and saw that every little bit of information about any given user was crammed into one table. It took me six hours to write a script that would organize the table into four or five separate tables and another two to get the app to use those tables. Please, normalize your databases! It will make everything else less of a headache.

link|improve this answer
show 4 more comments
feedback

Blaming the db engine when the query that ran sooo fast on your development machine blows up and choke once you throw some traffic at the application.

link|improve this answer
feedback
  • Very large transactions, inserting/updating a lot of data and then reloading it. Basically this is down to not considering the multi-user environment the database works in.

  • Overuse of functions, specifically as results in selects and in where clauses which causes the function to be called over and over again for the results. This, I think, fits under the general case of them trying to work in the procedural fashion they're more used to rather than use SQL to its full advantage.

link|improve this answer
feedback

15 - Using some crazy construct and application logic instead of a simple COALESCE.

link|improve this answer
feedback

I think the biggest mistakes that all developers and DBAs do is believing too much on conventions. What I mean by that is that convention are only guide lines that for most cases will work but not necessarily always. I great example is normalization and foreign keys, I know most people wont like this, but normalization can cause complexity and cause loss of performance as well, so if there is no reason to move a phone number to a phones table, don't do it. On the foreign keys, they are great for most cases, but if you are trying to create something that can work by it self when needed the foreign key will be a problem in the future, and also you loose performance. Anyways, as I sad rules and conventions are there to guide, and they should always be though of but not necessarily implemented, analysis of each case is what should always be done.

link|improve this answer
1  
If your biggest problem is that your application developer's databases closely adhere to largely-accepted database design conventions, then you live in a very happy world indeed. – jwiscarson Jan 5 '11 at 17:09
feedback

Many developers tend to execute multiple queries against the database (often querying one or two tables) extract the results and perform simple operations in java/c/c++ - all of which could have been done with a single SQL statement.

Many developers often dont realize that on development environments database and app servers are on their laptops - but on a production environment, database and apps server will be on different machines. Hence for every query there is an additional n/w overhead for the data to be passed between the app server and the database server. I have been amazed to find the number of database calls that are made from the app server to the database server to render one page to the user!

link|improve this answer
feedback

Biggest mistake is having a loop in the code updating or inserting data when a simple set-based solution would do the trick much faster, and much more simple.

link|improve this answer
feedback

There is one thing I might add, learn using analytic functions like PARTITION BY, RANK, DENSE_RANK (for Oracle). They are absolutely essential for complex queries.

Other advice is, if possible, to have a dedicated database developer in your development team who is expert in SQL, database modelling, tuning, etc. (Not a DBA though). Such skill is a great asset.

link|improve this answer
feedback

If you are using replication (MySQL), following functions are unsafe unless you are using row-based replication.

USER(), CURRENT_USER() (or CURRENT_USER), UUID(), VERSION(), LOAD_FILE(), and RAND()

See: http://dev.mysql.com/doc/refman/5.1/en/replication-features-functions.html

link|improve this answer
feedback

1) Poor understanding of how to properly interact between Java and the database.

2) Over parsing, improper or no reuse of SQL

3) Failing to use BIND variables

4) Implementing procedural logic in Java when SQL set logic in the database would have worked (better).

5) Failing to do any reasonable performance or scalability testing prior to going into production

6) Using Crystal Reports and failing to set the schema name properly in the reports

7) Implementing SQL with Cartesian products due to ignorance of the execution plan (did you even look at the EXPLAIN PLAN?)

link|improve this answer
feedback

Using an RDMS

Any relational database management system has weakness that will slow you down and the performance of your application.

  1. Wasting time building tables instead of just using your object models.
  2. Creating relationships that will just need to be built into your app.
  3. Writing data access code (stored procedures) in your database.
  4. Not being able to create unique table ids outside of your database.
  5. Built in support for replication, auto sharding and fail overs.
  6. The ability to change your table's schema on the fly.
  7. Sub-second speed and performance
  8. The ability to pull your whole object out of the database with relationship data without joins.

All these things and more can be accomplished by using a Document Database.

Great example of a big RDMS being migrated to Document Database.
Guardian.co.uk converts from ORACLE to MongoDB.

link|improve this answer
14  
-1: The NoSQL Fanboi stench in this answer is overwhelming. RDMS have their place and are not inherently evil. Your square peg for all holes (circle, triangle, etc) approach to data storage is wildly uneducated and self-destructive. – Stu Thompson Dec 13 '10 at 19:52
1  
Let me guess: "MongoDB is web scale", right? bit.ly/i59fBL – Stu Thompson Dec 30 '10 at 11:06
1  
The problem is that not all kinds of databases can be noSQL. You would store your bank account transactions on MongoDB? Me not. – Patrizio Rullo Jan 10 '11 at 9:40
1  
Just because something is new doesn't mean it's better. – Robert Harvey Jun 13 '11 at 19:44
show 8 more comments
feedback
1 2

Not the answer you're looking for? Browse other questions tagged or ask your own question.