3
votes
3answers
178 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.
…
13
votes
12answers
360 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 wit …
2
votes
6answers
91 views
mySQL - Should I denormalise?
Overview (Sorry its vague - I think if I went into more detail it would just over complicate things)
I have three tables, table one contains an id, table two contains its own id a …
49
votes
7answers
3k 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 sur …
1
vote
3answers
54 views
Should I make another table or just use arrays? (To normalize or not to normalize)
The current situation is that topics are sorted by 3 main categories. There is the potential to add more than just the 3 categories but the higher ups wish to implement the abilit …
7
votes
11answers
828 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 a …
3
votes
7answers
108 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 …
2
votes
5answers
93 views
Is storing counts of database record redundant?
I'm using Rails and MySQL, and have an efficiency question based on row counting.
I have a Project model that has_many :donations.
I want to count the number of unique donors for …
5
votes
6answers
453 views
Keeping tables synchronized in Oracle
Hi,
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 a …
1
vote
1answer
38 views
Abstraction for denormalization in Rails?
So frequently I find myself writing code like this:
song.rb:
:before_save :cache_sortable_name
private
def cache_sortable_name
return unless name_changed?
self.sortable_nam …
0
votes
3answers
73 views
Denormalize data or multiple-column key?
I'm trying to make a judgment call in implementing a small-ish SQL Server '08 database.
I'm translating an output text file of a flat-file database from an old COBOL system to the …
0
votes
4answers
149 views
Please help explain if I’m destroying my DB Schema for the sake of performance :(
Hi folks,
I've got a database in production for nearly 3 years, on Sql 2008 (was '05, before that). Has been fine, but it isn't very performant. So i'm tweaking the schema and que …
0
votes
2answers
283 views
Oracle: flattening name value pairs into a table
Hi, I'm hoping someone can provide some advise for an easier way to deal with this problem. I am working on creating a flattened view of a highly normalized set of data. The goal …
1
vote
2answers
157 views
Denormalize a DataSet
I have a DataSet with some DataTables that are linked together with DataRelations (classic order Header/Detail pair). Is there an easy way to denormalize the whole lot into a singl …
2
votes
3answers
81 views
Using a natural key, or using surrogate keys and audit table(s) for auditing/change log.
Hi all,
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 …
