Tagged Questions

Denormalization is the process of moving from higher to lower normal forms of database modeling in order to speed up database access.

learn more… | top users | synonyms

106
votes
7answers
8k views

When and why are database joins expensive?

I'm doing some research into databases and I'm looking at some limitations of relational DBs. I'm getting that joins of large tables is very expensive, but I'm not completely sure why. What does 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
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 ...
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 ...
9
votes
2answers
678 views

Denormalization in Google App Engine?

Background:::: I'm working with google app engine (GAE) for Java. I'm struggling to design a data model that plays to big table's strengths and weaknesses, these are two previous related posts: ...
8
votes
4answers
474 views

MongoDB, C# and NoRM + Denormalization

I am trying to use MongoDB, C# and NoRM to work on some sample projects, but at this point I'm having a much harder time wrapping my head around the data model. With RDBMS's related data is no ...
7
votes
5answers
128 views

How do I periodically rebuild a reporting table that is very frequently accessed?

It takes about 5-10 minutes to refresh a prepared reporting table. We want to refresh this table constantly (maybe once every 15 minutes or continuously). We query this reporting table very ...
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 ...
6
votes
5answers
82 views

Is it a bad idea to keep a subtotal field in database

I have a MySQL table that represents a list of orders and a related child table that represents the shipments associated with each order (some orders have more than one shipment, but most have just ...
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 ...
5
votes
1answer
195 views

Best practices for Denormalizing data from Relational to non-relational DBs

I'm running a website that's starting to grow beyond simple performance and Tunning. It's a PHP app with MySQL as backend. MySQL is properly tunned and the code is optimized. The thing is that i see ...
5
votes
2answers
345 views

Normalization question regarding address,city,country data

I currently have 3 tables storing information about all the main cities in the world, each region/state that corresponds to those countries, and each city that is in those states/regions. Now I ...
5
votes
7answers
321 views

Denormalizing for sanity or performance?

I've started a new project and they have a very normalized database. everything that can be a lookup is stored as the foreign key to the lookup table. this is normalized and fine, but I end up doing ...
5
votes
2answers
252 views

Any good literature on join performance vs systematic denormalization?

As a corollary to this question I was wondering if there was good comparative studies I could consult and pass along about the advantages of using the RDMBS do the join optimization vs systematically ...
5
votes
6answers
1k views

Normalize or Denormalize in high traffic websites

what is the best practice for database design for high traffic websites like this one stackoverflow? should one must use normalize database for record keeping or normalized technique or combination ...
5
votes
5answers
3k views

Keeping tables synchronized in Oracle

We're about to run side-by-side testing to compare a legacy system with a new shiny version. We have an Oracle database table, A, that stores data for the legacy system, and an equivalent table, B, ...
4
votes
3answers
265 views

Best way to store user-submitted item names (and their synonyms)

Consider an e-commerce application with multiple stores. Each store owner can edit the item catalog of his store. My current database schema is as follows: item_names: id | name | description | ...
4
votes
3answers
240 views

Address book database design: denormalize?

I'm designing a contact manager/address book-like application but can't settle on the database design. In my current setup I have a Contact, which has Addresses, Phonenumbers, Emails, and ...
4
votes
1answer
164 views

Can materialized views be used as a fast denomalized big table?

Can Oracle Materialized views be used to join multiple related tables having foreign keys to create a larger denormalized big table which is refreshed instantaneously? On some investigations, it says ...
4
votes
4answers
197 views

Denormalize for Simplicity: Ungood idea?

After reading this question, I've learned that denormalization is not a solution for simplicity. What about this case? I have news-articles which have a list of sites-article-will-be-published-to. ...
4
votes
2answers
276 views

Should I denormalize a has_many has_many?

I have this: class User < ActiveRecord::Base has_many :serials has_many :sites, :through => :series end class Serial < ActiveRecord::Base belongs_to :user belongs_to :site ...
4
votes
3answers
572 views

Views performance in MySQL for denormalization

I am currently writing my truly first PHP Application and i would like to know how to project/design/implement MySQL Views properly; In my particular case User data is spread across several tables ...
4
votes
2answers
64 views

Need advice on denormalizing a database that deals with responses to polls

My web app deals with polls (surveys). Right now I have 2 tables as part of database schema. polls id question choices (ex: yes,no,maybe) created polls_responses poll_id ...
4
votes
2answers
2k views

Pros and Cons of Triggers vs. Stored Procedures for Denormalization

When it comes to denormalizing data in a transactional database for performance, there are (at least) three different approaches: Push updates through stored procedures which update both the ...
4
votes
3answers
350 views

Using a natural key, or using surrogate keys and audit table(s) for auditing/change log

My first question on here so be nice! I am a junior developer with not much experience and am having trouble with this problem. I have a table which needs to be auditable. Let's say this table ...
3
votes
2answers
210 views

Unique constraint over multiple tables

Let's say we have these tables: CREATE TABLE A ( id SERIAL NOT NULL PRIMARY KEY ); CREATE TABLE B ( id SERIAL NOT NULL PRIMARY KEY ); CREATE TABLE Parent ( id SERIAL NOT NULL PRIMARY ...
3
votes
1answer
5k views

MATLAB: how to normalize/denormalize a vector to range [-1;1]

How can I normalize a vector to the range [-1;1] instead of [0;1]. I would to use function norm, because it's faster. And how to denormalize that vector after that? I've tried some solutions, but no ...
3
votes
3answers
99 views

A good approach to db planing for reporting service

The scenario: Big system (~200 tables). 60,000 users. Complex reports that will require me to do multiple queries for each report and even those will be complex queries with inner queries all over ...
3
votes
3answers
98 views

Table Design For SystemSettings, Best Model

Someone suggested moving a table full of settings, where each column is a setting name(or type) and the rows are the customers & their respective settings for each setting. ID | IsAdmin | ...
3
votes
2answers
463 views

Design User/Group ACL data model

My question may probably be an echo of a question previously asked here: http://stackoverflow.com/questions/452295/how-to-design-a-user-object-model-using-ms-roles-membership, but I'm asking again ...
3
votes
5answers
446 views

What effect will denormalization have on queries, joins and response time?

Before denormalizing, I'm wondering what effect this is going to have on the following: Query response time Width of rows in the database Joins necessary for a result Number of queries necessary ...
3
votes
7answers
1k views

Safely normalizing data via SQL query

Suppose I have a table of customers: CREATE TABLE customers ( customer_number INTEGER, customer_name VARCHAR(...), customer_address VARCHAR(...) ) This table does not have a primary ...
3
votes
5answers
2k views

How to denormalize a heavily normalized database system?

I'm looking to introduce some database denormalization to a heavily normalized system. I have a large set of databases that have evolved over ten years and are under increasing amounts of load so I'm ...
3
votes
9answers
545 views

Dealing with “hypernormalized” data

My employer, a small office supply company, is switching suppliers and I am looking through their electronic content to come up with a robust database schema; our previous schema was pretty much just ...
3
votes
3answers
258 views

MS Access Moving records into fields

I have an ODBC connection to a database I don't own and can't change. What I am looking to do is to make related records merge into one record. The relationship is a 1 to many. I have a student ...
3
votes
2answers
343 views

Is it a good idea to use normalised tables with denormalised indexed views?

I'm architecting a new app at the moment, with a high read:write ratio. At my current employer we have lots of denormalised data on our tables for performance reasons. Is it better practice to have ...
2
votes
2answers
57 views

Chain of tables, when to denormalize?

Say TABLE-A can have one or more rows in TABLE-B, which can have one or more rows in TABLE-C, which can have one or more rows in TABLE-D ... and so on. Say I am at TABLE-Z and need to know details ...
2
votes
1answer
72 views

What is a productive / efficient way to query a table with repeating fields using T-SQL?

I have a tables (simplified) like this: Lender Id (PK) AgencyCode1 AgencyCode2 AgencyCode3... AgencyCode20 Agency AgencyCode AgencyName The Lender table is denormalized data ...
2
votes
1answer
93 views

Is possible to insert a denormalized bean with Hibernate?

I have one bean like: public class Car{ String color; List<Wheel> wheels; .... } And public class Wheel{ int size; .... } Assuming an standard hibernate ...
2
votes
2answers
165 views

DDL to define denormalization rules?

I've been doing the relational database thing for years now, but lately have moved into Cassandra/Redis territory. NoSQL makes sense for what we're doing, so that's fine. As I was working through ...
2
votes
5answers
369 views

Problem: Writing a MySQL parser to split JOIN's and run them as individual queries (denormalizing the query dynamically)

I am trying to figure out a script to take a MySQL query and turn it into individual queries, i.e. denormalizing the query dynamically. As a test I have built a simple article system that has 4 ...
2
votes
1answer
335 views

Create comma-delimited values in Excel (using PivotTable)?

Is there a way to generate comma-delimited values in Excel (optimally using a PivotTable)? Consider the following data: Object Color foo Red foo Blue bar Red bar Blue bar Green baz ...
2
votes
2answers
246 views

Normalizing a table: finding unique columns over series of rows (Oracle 10.x)

I have a table with the following structure: WorkerPersons ------------------------------- ID (PK) PersonID (Indicates which version of Person the record describes) SomeColumn1 (data ...
2
votes
1answer
242 views

Load data from denormalized file into a normalized table

I receive a denormalized text file that must be loaded into a normalized table. Denormalized table: CustomerID -- Category -- Category2 -- Category3 -- Category4 1 -- A -- B -- C -- D When this is ...
2
votes
2answers
292 views

TransFusion: Should I denormalize Loan, Purchase, Inventory and Sale tables into one Transaction table?

Based on the information I have provided below, can you give me your opinion on whether its a good idea to denormalize separate tables into one table which holds different types of transactions?.. ...
2
votes
1answer
72 views

Denormalization of large text?

If I have large articles that need to be stored in a database, each associated with many tables would a NoSQL option help? Should I copy the 1000 char articles over multiple "buckets", duplicating ...
2
votes
2answers
35 views

Table clusters in SQLServer

In Oracle, a table cluster is a group of tables that share common columns and store related data in the same blocks. When tables are clustered, a single data block can contain rows from multiple ...
2
votes
4answers
148 views

De-normalization alternative to specific MYSQL problem?

I am facing quite a specific optimization problem. I currently have 4 normalized tables of data. Every second, possibly thousands of users will pull down up-to-date info from these tables using ...
2
votes
3answers
116 views

Relational Data to Flat File

I hope you can help find an answer to a problem that will become a recurring theme at work. This involves denormalising data from RDBMS tables to flat file formats with repeating groups (sharing ...

1 2 3