Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 788 Vote(s) - 3.58 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Database development mistakes made by application developers

#1
What are common database development mistakes made by application developers?
Reply

#2
Forgetting to set up relationships between the tables. I remember having to clean this up when I first started working at my current employer.
Reply

#3
Not using indexes.
Reply

#4
Not doing the correct level of [normalization][1]. You want to make sure that data is not duplicated, and that you are splitting data into different as needed. You also need to make sure you are not following normalization *too* far as that will hurt performance.


[1]:

[To see links please register here]

Reply

#5
In my experience:<br/>
Not communicating with experienced DBAs.<br/>
Reply

#6
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.
Reply

#7
1. Not using version control on the database schema
2. Working directly against a live database
3. Not reading up and understanding more advanced database concepts (indexes, clustered indexes, constraints, materialized views, etc)
4. Failing to test for scalability ... test data of only 3 or 4 rows will never give you the real picture of real live performance
Reply

#8
Number one problem? They only test on toy databases. So they have no idea that their SQL will crawl when the database gets big, and someone has to come along and fix it later (that sound you can hear is my teeth grinding).
Reply

#9
Treating the database as just a storage mechanism (i.e. glorified collections library) and hence subordinate to their application (ignoring other applications which share the data)
Reply

#10
Not using parameterized queries. They're pretty handy in stopping [SQL Injection](

[To see links please register here]

).

This is a specific example of not sanitizing input data, mentioned in another answer.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through