I want to be able to change the base millisecond reference from 1970 to 2008 in java so that I can save space in the database and unique Ids.
Preferably with Joda-Time.
The upcoming jsr-310 in the supposed java 7 release implements it.
In the The Discrete Timeline section of this link it states that the counting of milliseconds has changed from 1970 to 2008
http://today.java.net/pub/a/today/2008/09/18/jsr-310-new-java-date-time-api.html
The only other option I can see is to mathematically implement it every time I need to look up a record.
E.g.
DateTime dt = new DateTime();
long now = dt.getMillis();
DateTime dt2 = new DateTime(2008, 1, 1, 0, 0, 0, 0);
long then = dt2.getMillis();
long smallerDate = now - then;
Smaller date will be stored in the DB
-- Edit --
So I miss read the JSR-310, and it's not possible
There are better ways to save space and then a headache of processing thousands of request to calculate longs,
I wanted to record longs as dates because I'll never know where I will move the DB to, MySQL => Oracle
So I didn't want time stamps, I just wanted BigInts.

longvalue would be slightly shorter, but if you declare the column to be of typebigint(or similar, as you have to in order to store the value), it take the same size regardless of the beginning of the epoch. – Dirk Sep 24 at 13:52new DateTime(2008, 1, 1, /*12*/0, 0, 0, 0);Or does Joda actually start measuring time from noon? – Kip Sep 24 at 13:54