Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
9answers
4k views

Why do we need a temporal database?

I was reading about temporal databases and it seems they have built in time aspects. I wonder why would we need such a model? How different is it from a normal RDBMS? Can't we have a normal database ...
6
votes
4answers
466 views

Database design to hold a person's information that changes with time?

We use a third-party product to manage our sports centre membership. We have several membership types (eg. junior, student, staff, community) and several membership statuses (eg. annual, active, ...
5
votes
4answers
738 views

Historical / auditable database

This question is related to the schema that can be found in one of my other questions here. Basically in my database I store users, locations, sensors amongst other things. All of these things are ...
5
votes
2answers
281 views

Are there any design patterns for bitemporal NoSQL databases?

I'm curious if anyone has implemented or even knows of any bitemporal databases built on NoSQL platforms (e.g., riak).
5
votes
3answers
164 views

Is there an SQL database that can rollback in time?

I am looking for an SQL database of some type that is entirely based around the concept of time, just like those that are geo-centric, relationship-centric, etc. My main wish is that I can make ...
4
votes
4answers
2k views

Aggregate adjacent only records with T-SQL

I have (simplified for the example) a table with the following data Row Start Finish ID Amount --- --------- ---------- -- ------ 1 2008-10-01 2008-10-02 01 10 2 ...
3
votes
1answer
599 views

How would you make a Temporal Many-to-Many Relationship in SQL?

How would you represent a temporal many-to-many relation in SQL? Under non-temporal circumstances one would use a junction table (aka link/bridge/map) to connect the two sides. Is adding temporal ...
2
votes
3answers
697 views

temporal database modeling and normalisation

Should dates for a temporal database stored in one or 2 tables ? If one doesn't this violate normalisation ? PERSON1 DATE11 DATE21 INFO11 INFO21 DEPRECATED PERSON2 DATE21 DATE22 INFO21 INFO22 CURRENT ...
2
votes
2answers
204 views

Who is the Fielding of Temporal Database modeling?

It doesn't take very much reading on REST before you run across Fielding and his dissertation IF you've had some wins with temporal modeling within the confines of a relational store Who are the big ...
1
vote
1answer
15 views

How to re-save the entity as another row in Doctrine 2

Let's say I have entity $e. Is there any generic way to store it as another row, which would have the same entity data but another primary key? Why I need this: I'm implementing some sort of Temporal ...
1
vote
1answer
31 views

How to tune performance of a temporal SQL Server table

For a given point in time, an asset has an effective price. Some assets have a new price once a week, some once a day. The most recent price is the "effective price". The temporal table that stores ...
1
vote
1answer
74 views

Temporal Aggregation in PostgreSQL

I am working on a Java implementation for temporal aggregation using a PostgreSQL database. My table looks like this Value | Start | Stop (int) | (Date) | (Date) ...
1
vote
1answer
176 views

Table design for spatio-temporal data

I am interested in best practices for designing relational DB tables for holding spatio-temporal data. Specifically data that will be kept in such tables are custom geometries that have certain ...
1
vote
1answer
66 views

comparing temporal sequences

I'm trying to wrap my head around this task and wondering if there is a standard way of doing this or some libraries that would be useful. Certain events are tracked and timed at several data sources ...
1
vote
0answers
206 views

Is Oracle Workspace Manager production ready?

I'm exploring options for implementing a large-scale temporal database. There will likely be billions of records managed with minimal temporal churn, and I'd like a vendor implemented solution to ...
1
vote
2answers
208 views

Versioned and indexed data store

I have a requirement to store all versions of an entity in a easily indexed way and was wondering if anyone has input on what system to use. Without versioning the system is simply a relational ...
0
votes
1answer
60 views

JDBC- SQL spatio-temporal query

trajectory table OBJID PLACE 7 H 8 Q 9 W 10 A ...
0
votes
1answer
72 views

Storing object graph as of date in a database

I'm going to try to keep this question database agnostic, but I have an interesting problem that I need to tackle and I thought I'd open up the floor for suggestions and feedback. I need to be able ...
0
votes
3answers
86 views

Temporary group membership tally - Any clever way to do it?

I'm building a website. It has groups that users can join. The difference between this and "normal" groups is that membership is temporary - when a user joins a group, he decides the length of ...