Can anyone recommend for/against the time-travel functions in postgresql's contrib/spi module? Is there an example available anywhere?

Tnx

link|improve this question

62% accept rate
2  
I always hear people saying how much better postgresql is than mysql, but now you tell me it has time travel?? amazing!! – davr Oct 3 '08 at 20:22
:-) 'Time travel' is the ability to see the DB as it was in the past - i.e., what values were present in a table at some point earlier on. Have a loot at postgresql.org/docs/8.3/static/contrib-spi.html. – Yuval Oct 3 '08 at 20:25
feedback

2 Answers

up vote 3 down vote accepted

The argument for time-travel would be being able to look at tables that are updated often at an earlier insertion/deletion point. Say a table of stock prices for a firms investment portfolio.
The argument against would be the extra storage space it eats up.

Here is an Example of use.

link|improve this answer
Sad. This link doesn't seem to work anymore. – Lailson Bandeira Aug 28 '10 at 3:51
1  
I found the file in the Github repo: github.com/postgres/postgres/blob/master/contrib/spi/… – Lailson Bandeira Aug 28 '10 at 3:55
feedback

See This discussion for an alternative approach to historical reporting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.