Is there a function built into Oracle that will return the highest possible date that may be inserted into a date field?
+2
A:
SELECT TO_DATE('31.12.9999 23:59:59', 'dd.mm.yyyy hh24:mi:ss')
FROM dual
Note that minimal date is much more simple:
SELECT TO_DATE(1, 'J')
FROM dual
Quassnoi
2009-03-26 20:57:59
A:
I do not know of a function but according to this article:
Oracle 7: from January 1, 4712 BC to December 31, 4712 AD.
Oracle 8: from January 1, 4712 BC to December 31, 9999 AD.
Oracle 9: from January 1, 4712 BC to December 31, 9999 AD.
PL/SQL: from January 1, 4712 BC to December 31, 9999 AD.
Andrew Hare
2009-03-26 20:58:47
+1
A:
From the 11g docs:
Oracle Database can store dates in the Julian era, ranging from January 1, 4712 BCE through December 31, 9999 CE (Common Era, or 'AD').
http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/datatype.htm#i1847
Angelo Marcotullio
2009-03-26 21:02:11
Common Era... Is that a politically correct term for the "confessionally biased" AD ?
Thilo
2009-03-27 08:37:50
A:
Another ways, just for fun:
SELECT to_date(5373484, 'J')
FROM dual;
SELECT date '9999-12-31' + (1 - 1/24/60/60)
FROM dual;
FerranB
2009-03-26 22:50:30