I stopped worrying and learned to love denormalized tables
1–10 of 100 posts
Re: I stopped worrying and learned to love denormalized tables
#2Re: I stopped worrying and learned to love denormalized tables
#3Every time someone praises dbt, a view sheds another tear.
Re: I stopped worrying and learned to love denormalized tables
#4An awful lot of the time, a table schema is a terrible abstraction of the actual series it is designed to record. Sometimes it's designed under constraints that exist only to self-sustain the abstraction. Some of them have viable reasoning, some don't. How these structures sustain themselves for . . decades . . is a mystery to me. These non-relational movements, in part represented by the OP article, are (in part) attempts to shift the computing from data to the actual programmatic area. Because the real world doesn't have schemas - although that's still, incredibly, a source of intense disagreement.
Just an interesting thing that keeps cropping up. I wonder what the formal, "scientific" name for this is?
Re: I stopped worrying and learned to love denormalized tables
#5It sure makes sense to love them, views are great. I don't know why they need a new name.
> Transformation tools such as dbt (Data Build Tool) have revolutionized the management and maintenance of denormalized tables. With dbt, we can establish clear relationships between table abstractions, create denormalized analytics datasets on top of them, and ensure data integrity and consistency with tests.
Re: I stopped worrying and learned to love denormalized tables
#6Of course I'm talking about 95% of the apps where this is acceptable, not 5% where table locking can cause problems, leading to the need for concurrent update handling.
Re: I stopped worrying and learned to love denormalized tables
#7For the third time this week, in relatively unrelated fields of computation science, I'm reminded of the quote: "Duplication is less expensive than the wrong abstraction". An awful lot of the time, a table schema is a terrible abstraction of the actual series it is designed to record. Sometimes it's designed under constraints that exist only to self-sustain the abstraction. Some of them have viable reasoning, some do…
Re: I stopped worrying and learned to love denormalized tables
#8Every time someone praises dbt, a view sheds another tear.
If I have to install binaries locally that sound boring
Re: I stopped worrying and learned to love denormalized tables
#9Re: I stopped worrying and learned to love denormalized tables
#10It sounds like the author is calling a kind of materialized/persisted view "denormalized tables". The actual DB tables stay untouched and fully normalized. It sure makes sense to love them, views are great. I don't know why they need a new name. > Transformation tools such as dbt (Data Build Tool) have revolutionized the management and maintenance of denormalized tables. With dbt, we can establish clear relationships…