Tagged Questions

117
votes
22answers
5k views
80
votes
42answers
7k views

What is the longest human name you can expect?

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 …
30
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 : …
30
votes
22answers
2k 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 …
27
votes
12answers
2k 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 …
25
votes
31answers
2k 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 …
24
votes
15answers
2k 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 …
23
votes
15answers
874 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 …
23
votes
10answers
4k 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 …
21
votes
14answers
2k 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 …
21
votes
31answers
2k views

What’s wrong with foreign keys?

I remember hearing Joel mention in the podcast 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 data …
20
votes
3answers
1k 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 …
18
votes
8answers
2k 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?
17
votes
1answer
276 views

SO, Wiki architectures and scaling

In the highscalability blog, Todd Hoff talks about the wiki architecture SO adopted (initially), crunches that followed and mentions the painful refactoring needed to get back on track. To quote: …
17
votes
15answers
1k 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: …

1 2 3 4 5 109 next
15 30 50 per page