What are common database development mistakes made by application developers?
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.
|
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. | ||||
|
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. | ||||
|
feedback
|
| ||||
|
feedback
|
|
15 - Using some crazy construct and application logic instead of a simple COALESCE. | ||||
|
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. | |||||
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! | ||||
|
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. | ||||
|
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. | ||||
|
feedback
|
|
If you are using replication (MySQL), following functions are unsafe unless you are using row-based replication.
See: http://dev.mysql.com/doc/refman/5.1/en/replication-features-functions.html | ||||
|
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?) | ||||
|
feedback
|
Using an RDMSAny relational database management system has weakness that will slow you down and the performance of your application.
All these things and more can be accomplished by using a Document Database. Great example of a big RDMS being migrated to Document Database. | |||||||||||||||||
feedback
|