Database design is the process of specifying the logical and/or physical parts of a database. The goal of database design is to make a representation of some "universe of discourse" - the types of facts, business rules and other requirements that the database is intended to model.
562
votes
41answers
55k views
Database development mistakes made by application developers [closed]
What are common database development mistakes made by application developers?
128
votes
31answers
4k views
What should every developer know about databases?
Whether we like it or not, many if not most of us developers either regularly work with databases or may have to work with one someday. And considering the amount of misuse and abuse in the wild, and ...
122
votes
44answers
30k views
What is the longest human name you can expect? [closed]
What is the longest name that you should expect to get as input to your program or database?
I don't want to truncate unusual names, but I also don't want people to paste a novel in my name field as ...
118
votes
11answers
3k views
First-time database design: am I overengineering?
Background
I'm a first year CS student and I work part time for my dad's small business. I don't have any experience in real world application development. I have written scripts in Python, some ...
87
votes
23answers
5k views
is email address a bad primary key
Is email address a bad candidate for primary when compared to auto incrementing numbers. Our web application needs the email address to be unique in the system. So, I thought of using email address ...
86
votes
22answers
24k views
Database, Table and Column Naming Conventions?
Whenever I design a database, I always wonder if there is a best way of naming an item in my database. Quite often I ask myself the following questions:
Should table names be plural?
Should column ...
82
votes
5answers
8k views
How do you recommend implementing tags or tagging
I've heard of a few ways to implement tagging; using a mapping table between TagID and ItemID (makes sense to me, but does it scale?), adding a fixed number of possible TagID columns to ItemID (seems ...
75
votes
5answers
31k views
MongoDB vs. Cassandra
I am evaluating what might be the best migration option.
Currently, I am on a sharded MySQL (horizontal partition), with most of my data stored in JSON blobs. I do not have any complex SQL queries ...
75
votes
15answers
17k views
Subqueries vs joins
I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like
where id in (select id from ... )
The refactored query runs about ...
66
votes
14answers
33k views
What are good open source GUI SQLite database managers?
Is there any good open source SQLite database manager around?
I am using sqlitebrowser now but I have to say the interface is not really friendly so I am looking for something better.
64
votes
8answers
2k views
Standard use of 'Z' instead of NULL to represent missing data?
Outside of the argument of whether or not NULLs should ever be used: I am responsible for an existing database that uses NULL to mean "missing or never entered" data. It is different from empty ...
62
votes
11answers
20k views
Relational Database Design Patterns?
Design patterns are usually related to object oriented design.
Are there design patterns for creating and programming relational databases?
Many problems surely must have reusable solutions.
Examples ...
58
votes
12answers
48k views
Database Schema Diagram Design Tool
Does anyone know of a good tool to quickly and easily create a diagram for a database schema? I don't need it to generate SQL to create the schema, I just want to diagram it.
My current process ...
57
votes
17answers
12k views
Good tool to visualise database schema?
Are there any good tools for visualising a pre-existing database schema? I'm using MySQL if it matters.
I'm currently using MySQL Workbench to process an SQL create script dump, but it's clunky, slow ...
56
votes
12answers
9k views
Database Design for Tagging
How would you design a database to support the following tagging features:
items can have a large number of tags
searches for all items that are tagged with a given set of tags must be quick (the ...
54
votes
22answers
4k views
Is there ever a time where using a database 1:1 relationship makes sense?
I was thinking the other day on normalization, and it occurred to me, I cannot think of a time where there should be a 1:1 relationship in a database.
Name:SSN? I'd have them in the same table
...
51
votes
30answers
7k views
What's wrong with foreign keys?
I remember hearing Joel Spolsky mention in podcast 014 that he'd barely ever used a foreign key (if I remember correctly). However, to me they seem pretty vital to avoid duplication and subsequent ...
45
votes
9answers
2k views
Why are composite primary keys still around?
I'm assigned to migrate a database to a mid-class ERP.
The new system uses composite primary keys here and there, and from a pragmatic point of view, why?
Compared to autogenerated IDs, I can only ...
45
votes
16answers
2k views
Are soft deletes a good idea?
Are soft deletes a good idea or a bad idea?
Instead of actually deleting a record in your database, you would just flag it as "IsDeleted" = true, and upon recovery of the record you could just flag ...
40
votes
15answers
5k views
Database Design for Revisions?
We have a requirement in project to store all the revisions(Change History) for the entities in the database. Currently we have 2 designed proposals for this:
e.g. for "Employee" Entity
Design 1:
...
39
votes
17answers
7k views
How many database indexes is too many?
I'm working on a project with a rather large Oracle database (although my question applies equally well to other databases). We have a web interface which allows users to search on almost any ...
38
votes
13answers
3k views
How should a programmer learn great database design? [closed]
What resources are recommended on learning database design? As mentioned in the title, please reference sources that target programmers.
37
votes
4answers
12k views
What's The Best Practice In Designing A Cassandra Data Model?
And what are the pitfalls to avoid? Are there any deal breaks for you? E.g., I've heard that exporting/importing the Cassandra data is very difficult, making me wonder if that's going to hinder ...
37
votes
11answers
2k views
Database-wide unique-yet-simple identifiers in SQL Server
First, I'm aware of this question, and the suggestion (using GUID) doesn't apply in my situation.
I want simple UIDs so that my users can easily communicate this information over the phone :
...
37
votes
27answers
5k views
How do you like your primary keys?
In a fairly animated discussion in my team I was made to think what most people like as primary keys. We had the following groups-
Int/ BigInt which autoincrement are good enough primary keys.
There ...
37
votes
33answers
3k views
Are nulls in a relational database okay?
There's a school of thought that null values should not be allowed in a relational database. That is, a table's attribute (column) should not allow null values. Coming from a software development ...
33
votes
5answers
5k views
Product table, many kinds of product, each product has many parameters
i'm have not much experience in table design. My goal is a product table(s), it must design to fix some requirement below:
Support many kind of products (TV, Phone, PC, ...). Each kind of product ...
33
votes
24answers
11k views
Use Float or Decimal for Accounting Application Dollar Amount?
We are rewriting our legacy Accounting System in VB.NET and SQL Server. We brought in a new team of .NET/ SQL Programmers to do the rewrite. Most of the system is already completed with the Dollar ...
32
votes
5answers
37k views
Can someone please give an example of 1NF, 2NF and 3NF in plain english?
I am trying to really wrap my head around the database normalization concept. I understand that it is used to avoid duplicate/redundant data, and it involves creating separate tables for certain ...
31
votes
14answers
6k views
Composite primary keys versus unique object ID field
I inherited a database built with the idea that composite keys are much more ideal than using a unique object ID field and that when building a database, a single unique ID should never be used as a ...
30
votes
8answers
15k views
What is Normalisation (or Normalization)? Why is it important?
Why do database guys go on about normalisation?
What is it?
How does it help?
Is it even that important?
Does it apply to anything outside of databases?
30
votes
14answers
5k views
Surrogate vs. natural/business keys
Here we go again, the old argument still arises...
Would we better have a business key as a primary key, or would we rather have a surrogate id (i.e. an SQL Server identity) with a unique constraint ...
30
votes
9answers
8k views
When/Why to use Cascading in SQL Server?
When setting up foreign keys in SQL Server, under what circumstances should you have it cascade on delete or update, and what is the reasoning behind it?
This probably applies to other databases as ...
29
votes
7answers
9k views
Max length for client ip address
What would you recommend as the maximum size for a database column storing client ip addresses? I have it set to 16 right now, but could I get an ip address that is longer than that with IPv6, etc?
28
votes
9answers
618 views
When is it better to store flags as a bitmask rather than using an associative table?
I’m working on an application where users have different permissions to use different features (e.g. Read, Create, Download, Print, Approve, etc.). The list of permissions isn’t expected to change ...
28
votes
14answers
34k views
Facebook database design?
I have always wondered how Facebook designed the friend <-> user relation.
I figure the user table is something like this:
user_email PK
user_id PK
password
I figure the table with user's ...
28
votes
36answers
2k views
Which is more important? DB design or coding?
Which is more important: The design of the database? Or the design of the application code?
There is a lot of information out there about reusable code (from Carl Franklin at dnrtv.com, CSLA.net, et. ...
27
votes
5answers
11k views
Storing SHA1 hash values in MySQL
I have a simple question which occured when I wanted to store the result of a SHA1 hash in a MySQL database:
How long should the VARCHAR field be in which I store the hash's result?
27
votes
10answers
5k views
How to version control a record in a database
Let's say that I have a record in the database and that both admin and normal users can do updates.
Can anyone suggest a good approach/architecture how to version control every change in this table ...
27
votes
8answers
2k views
Versioning Database Persisted Objects, How would you?
(Not related to versioning the database schema)
Applications that interfaces with databases often have domain objects that are composed with data from many tables. Suppose the application were to ...
26
votes
6answers
9k views
Database Structure for Tree Data Structure
What would be the best way to implement a customizable (meaning, a tree structure with an unknown number of level) tree data structure in a database?
I've done this once before using a table with a ...
26
votes
2answers
2k views
Optimal data architecture for tagging, clouds, and searching (like StackOverflow)?
I'd love to know how Stack Overflow's tagging and search is architected, because it seems to work pretty well.
What is a good database/search model if I want to do all of the following:
Storing ...
26
votes
15answers
1k views
One table or many?
I'm trying to design an application to hold academic reference information. The problem is that each different type of reference (eg. journal articles, books, newspaper articles etc) requires ...
25
votes
11answers
4k views
Is there common street addresses database design for all addresses of the world?
I am a programmer and to be honest don't know street address structures of the world, just how in my country is structured :) so which is the best and common database design for storing street ...
25
votes
6answers
6k views
What are best practices for multi-language database design?
What is the best way to create multi-language database? To create localized table for every table is making design and querying complex, in other case to add column for each language is simple but not ...
25
votes
9answers
10k views
Storing money in a decimal column - what precision and scale?
I'm using a decimal column to store money values on a database, and today I was wondering what precision and scale to use.
Since supposedly char columns of a fixed width are more efficient, I was ...
24
votes
11answers
4k views
Best practices for storing postal addresses in a database (RDBMS)?
Are there any good references for best practices for storing postal addresses in an RDBMS? It seems there are lots of tradeoffs that can be made and lots of pros and cons to each to be evaluated -- ...
24
votes
9answers
29k views
Auto Generate Database Diagram MySQL
I'm tired of opening Dia and creating a database diagram at the beginning of every project. Is there a tool out there that will let me select specific tables and then create a database diagram for me ...
23
votes
12answers
954 views
Why use an auto-incrementing primary key when other unique fields exist?
I'm taking a course called "database systems" and for our class project I have to design a website.
Here's an example of a table I created:
CREATE TABLE users
(
uid INT NOT NULL AUTO_INCREMENT,
...
23
votes
6answers
237 views
While doing TDD and adding features incrementally, do I design database ahead or add tables and columns while coding?
One of the most important opportunity TDD gives us, from my point of view, is to develop projects incrementally, adding features one by one, which means ideally we have working system at every point ...