Tagged Questions
Normalization refers to transformations which aim to reduce variation of various types of data and thereby allow more consistent processing, searching, sorting, comparison, etc.
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 ...
63
votes
6answers
2k views
What is normalized UTF-8 all about?
The ICU project (which also now has a PHP library) contains the classes needed to help normalize UTF-8 strings to make it easier to compare values when searching.
However, I'm trying to figure out ...
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
...
44
votes
15answers
2k views
Explaining why “Just add another column to the DB” is a bad idea, to non programmers
I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate for, they get ...
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 ...
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?
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 ...
19
votes
3answers
10k views
How do I perform the SQL Join equivalent in MongoDB?
How do I perform the SQL Join equivalent in MongoDB?
For example say you have two collections (users and comments) and I want to pull all the comments with pid=444 along with the user info for each.
...
18
votes
9answers
1k views
Normalization in plain English
I sort of understand the concept of database normalization but always have a hard time explaining it in plain English especially for a job interview. I have read the wikipedia post, but still find it ...
18
votes
4answers
4k views
Laying out a database schema for a calendar application
I want to write a calendar application. It is really recurring items that throw a wrench in the works for the DB schema. I would love some input on how to organize this.
What if a user creates an ...
16
votes
6answers
10k views
How can I normalize a URL in python
I'd like to know do I normalize a URL in python.
For example, If I have a url string like : "http://www.example.com/foo goo/bar.html"
I need a library in python that will transform the extra space ...
15
votes
9answers
1k views
Is storing a comma separated list in a database column really that bad?
Imagine a web form with a set of checkboxes (any or all can be selected). I chose to save them in a comma separated list of values stored in one column of the database table.
Now, I know that the ...
14
votes
13answers
641 views
Users asking for denormalized database
I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...
12
votes
3answers
297 views
How would I implement separate databases for reading and writing operations?
I am interested in implementing an architecture that has two databases one for read operations and the other for writes. I have never implemented something like this and have always built single ...
12
votes
12answers
2k views
How far to take normalization in database design?
If I have a Tables:
Projects(projectID, CreatedByID)
Employees(empID,depID)
Departments(depID,OfficeID)
Offices(officeID)
("CreatedByID" is a foreign key for employees)
And I have a query that I ...
12
votes
13answers
2k views
In terms of databases, is “Normalize for correctness, denormalize for performance” a right mantra?
Normalization leads to many essential and desirable characteristics, including aesthetic pleasure. Besides it is also theoretically "correct". In this context, denormalization is applied as a ...
12
votes
10answers
1k views
Overnormalization
When would a database design be described as overnormalized? Is this characterization an absolute one? Or is it dependent on the way it is used in the application? Thanks.
11
votes
8answers
1k views
When to Denormalize a Database Design
I know that normalis(z)ation has been extensively discussed on Stack Overflow. I've read many of the previous discussions. I've got some additional questions though.
I'm working on a legacy system ...
11
votes
3answers
459 views
Normalizing/validation for international data sets in a database?
Lets say you are dealing with your normal contact database (you know... name, phone number, address, email, etc...). If you're concerened about this locally, it's generally not a big issue to deal ...
11
votes
18answers
2k views
Is normalizing a person's name going too far?
You usually normalize a database to avoid data redundancy. It's easy to see in a table full of names that there is plenty of redundancy. If your goal is to create a catalog of the names of every ...
11
votes
12answers
3k views
How many fields is 'too many' in a table?
I have a coworker who is planning a database for a new app that will have several tables with over 30 fields each. Is this excessive? Maybe I'm just not enterprisey enough to understand.
Edit: Also, ...
10
votes
3answers
182 views
In a database, when should you store derived data?
My question is about denormalization. In a database, when should you store derived data in its own column, rather than calculating it every time you need it?
For example, say you have Users who get ...
10
votes
3answers
517 views
Java library for text normalization
I'm looking for java library which allow "normalization" of text. Something similar to standart Normalizer, but wider (something like utf8proc LUMP).
It should replace all kind of special ...
10
votes
4answers
1k views
File.listFiles() mangles unicode names with JDK 6 (Unicode Normalization issues)
I'm struggling with a strange file name encoding issue when listing directory contents in Java 6 on both OS X and Linux: the File.listFiles() and related methods seem to return file names in a ...
10
votes
12answers
1k views
How to convince someone to normalize a database?
So I’ve been working on this project at work where I’m coding a php website that interacts with a database I have no control over. The database was “designed” by a co-worker that has been with the ...
9
votes
3answers
167 views
Hmm, why finding by '2' or '2' return the same record?
forgive my newbie question, but why finding by '2' or '2' in Mysql returns the same record?
For example:
Say I have a record with string field named 'slug', and the value is '2'. And the following ...
9
votes
8answers
211 views
What kind of normalization rule does this violate?
Suppose I have two tables on a database, T10 and T11, having 10 and 11 columns, respectively, where 10 of the columns are exactly the same on both.
What (if any) normalization rule am I violating?
9
votes
6answers
2k views
Polymorphism in SQL database tables?
I currently have multiple tables in my database which consist of the same 'basic fields' like:
name character varying(100),
description text,
url character varying(255)
But I have multiple ...
8
votes
4answers
101 views
How to get the ID of INSERTed row in mysql?
I am INSERTing some words into a two-column table with this command
INSERT IGNORE INTO terms (term) VALUES ('word1'), ('word2'), ('word3')
How can I get the ID (Primary Key) of the row in which ...
8
votes
1answer
676 views
How do I apply URL normalization rules in PHP?
Is there a pre-existing function or class for URL normalization in PHP?
Specifically, following the semantic preserving normalization rules laid out in this wikipedia article on URL normalization, ...
8
votes
3answers
184 views
is my database overdesigned?
ok im new to database design,
please give me advices about this.
1 http://stackoverflow.com/questions/1823685/database-when-should-i-use-a-composite-index
im not sure what does index does, but
...
8
votes
12answers
968 views
Database Normalization
I'm new to database design and I have been reading quite a bit about normalization. If I had three tables: Accommodation, Train Stations and Airports. Would I have address columns in each table or an ...
8
votes
10answers
262 views
Drowning in a Sea of Nulls
An application I inherited tracks lab test results performed on material samples. Data is stored in a single table (tblSampleData) with a primary key of SampleID and 235 columns representing potential ...
8
votes
3answers
2k views
Phone number normalization: Any pre-existing libraries?
I have a system which is using phone numbers as unique identifiers. For this reason, I want to format all phone numbers as they come in using a normalized format. Because I have no control over my ...
7
votes
3answers
62 views
database columns and foreign key normalization
i am building a new system (lamp - ubuntu server, php 5.3, mysql 5.5, apache 2, redis) for my company (like a version 2.0)
i want to make it right and make it better.
i want to use innodb and i want ...
7
votes
4answers
810 views
Would like to Understand 6NF with an Example
I have just read @PerformanceDBA's arguments re: 6NF and E-A-V. I am intrigued. I had previously been skeptical of 6NF as it was presented as "merely" sticking some timestamp columns on tables.
I ...
7
votes
7answers
491 views
Should I use flat tables or a normalized database?
I have a web application that I am currently working on that uses a MySQL database for the back-end, and I need to know what is better for my situation before I continue any further.
Simply put, in ...
7
votes
6answers
2k views
In what way does denormalization improve database performance?
I heard a lot about denormalization which was made to improve performance of certain application. But I've never tried to do anything related.
So, I'm just curious, which places in normalized DB ...
7
votes
3answers
486 views
Is database normalization still necessary?
Is database normalization still "the thing?"
When I studied during a databases course we were taught all levels of normalization and were said that we must always do it.
Now, with all the NoSQL ...
7
votes
7answers
285 views
How should I approach migrating data from a “bad” database design to a usable design?
The current project I inherited mainly revolves around one unnormalized table. There are some attempts at normalization but the necessary constraints weren't put in place.
Example: In the Project ...
7
votes
2answers
1k views
What is a good KISS description of Boyce-Codd normal form?
What is a KISS (Keep it Simple, Stupid) way to remember what Boyce-Codd normal form is and how to take a unnormalized table and BCNF it?
Wikipedia's info: not terribly helpful for me.
7
votes
9answers
6k views
Good examples for teaching database design
Does anyone have any good scenarios for teaching relational databases and SQL? All the examples I can find are either trivial or have improbable domain constraints (like full name being unique).
I'm ...
6
votes
7answers
316 views
Database Design: User Profiles like in Meetup.com
In Meetup.com, when you join a meetup group, you are usually required to complete a profile for that particular group. For example, if you join a movie meetup group, you may need to list the genres of ...
6
votes
9answers
291 views
unnecessary normalization
My friend and I are building a website and having a major disagreement. The core of the site is a database of comments about 'people.' Basically people can enter comment and they can enter the ...
6
votes
6answers
230 views
Database Designing: An art or headache (Managing relationships)
I have seen in my past experience that most of the people don't use physical relationships in tables and they try to remember them and apply them through coding only.
Here 'Physical Relationships' ...
6
votes
4answers
197 views
Normalizing this database: what would be ideal in this scenario?
I'm designing a game where a character has many items and those items can be of many types. There is a character table, and twelve different tables of possible items broken down by type (such as ...
6
votes
8answers
304 views
Is it bad to not use normalised tables in this database?
I recently learned about normalisation in my informatics class and I'm developing a multiplayer game using SQLite as backend database at the moment.
Some information on it:
The simplified structure ...
6
votes
5answers
450 views
Does normalization really hurt performance in high traffic sites?
I am designing a database and I would like to normalize the database. In one query I will joining about 30-40 tables. Will this hurt the website performance if it ever becomes extremely popular? This ...
6
votes
4answers
554 views
Are these tables respect the 3NF Database Normalization?
AUTHOR table
Author_ID, PK
First_Name
Last_Name
TITLES table
TITLE_ID, PK
NAME
Author_ID, FK
DOMAIN table
DOMAIN_ID, PK
NAME
TITLE_ID, FK
READERS table
READER_ID, PK
First_Name
Last_Name
...
6
votes
5answers
177 views
mySQL Efficiency Issue - How to find the right balance of normalization…?
I'm fairly new to working with relational databases, but have read a few books and know the basics of good design.
I'm facing a design decision, and I'm not sure how to continue. Here's a very over ...