meridian99
MIS
I use the following fix to add the century values to a 2 digit year into a 4 digit year. I found that dates < 1950 are converted into 2048 instead of 1948.
update employee_details
set date_of_birth =
to_char(to_date(date_of_birth,'mm/dd/rr'),'mm/dd/yyyy');
commit;
Is there a number of years limit in using the 'rr' function? Using oracle 8i for windows2000.
many thanks
update employee_details
set date_of_birth =
to_char(to_date(date_of_birth,'mm/dd/rr'),'mm/dd/yyyy');
commit;
Is there a number of years limit in using the 'rr' function? Using oracle 8i for windows2000.
many thanks