Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
322 views

How to create history fact table?

I have some entities in my Data Warehouse: Person - with attributes personId, dateFrom, dateTo, and others those can be changed, e.g. last name, birth date and so on - slowly changing dimension ...
4
votes
3answers
1k views

Implementing a data history / versioning solution for a Hibernate-based application (with a twist)

First the basic facts: Java webapp, Spring, Hibernate, MySQL. The situation is that I have a complex object model of e.g. a Car. It's composed of many objects (Engine, Tires, ...) with many-to-one ...
1
vote
3answers
2k views

Hibernate: Is there a way to programatically create new tables that resemble an existing one?

I have a web app that have many tables (each represents a POJO). I wrote mapping files for each class and then use Hibernate's SchemaExport to generate the tables in my database. Now I want to create ...