I need help big time. The folowing syntax will create a result data field '09/10/2002' hopefully that brings back the right date. However I'm getting the day and month back perfectly as well as the last 2 digits in the year. The first 2 digits of the year is defaulting to 20xx. How can I stop this. My coding below has to use a decode function to not include a date that sql server would error on. Any help would be greatly appreciated. Thanks!
TO_DATE(decode(DATE_ENTRY_CREATED, TO_DATE('11/11/1111', 'MM/DD/YYYY'), NULL, DATE_ENTRY_CREATED))
TO_DATE(decode(DATE_ENTRY_CREATED, TO_DATE('11/11/1111', 'MM/DD/YYYY'), NULL, DATE_ENTRY_CREATED))