ashish_mistry
Member²
Try having a table with date as
01-Jan-2100 ..
eg i had a table ps_job with effdt as thedate field
SELECT ps_job.effdt,
to_char(ps_job.effdt,'DD-MON-YYYY'),
count(*)
FROM ps_job
WHERE ps_job.effdt >= to_date('01-JAN-2009', 'DD-MON-RRRR')
group by ps_job.effdt
the PLSQL developer result cell will have 01-jan-00
and the drop down date Gui date popup indicate
JAN 2000
1
the date format in the Preferences is Oracle format,
changing it to userdefined will not help
So when I was querying dates > Jan 2009 .. it gives me an idea that something is wrong in my query and 01-Jan-2000 results are returned
Thanks,
Ashish
01-Jan-2100 ..
eg i had a table ps_job with effdt as thedate field
SELECT ps_job.effdt,
to_char(ps_job.effdt,'DD-MON-YYYY'),
count(*)
FROM ps_job
WHERE ps_job.effdt >= to_date('01-JAN-2009', 'DD-MON-RRRR')
group by ps_job.effdt
the PLSQL developer result cell will have 01-jan-00
and the drop down date Gui date popup indicate
JAN 2000
1
the date format in the Preferences is Oracle format,
changing it to userdefined will not help
So when I was querying dates > Jan 2009 .. it gives me an idea that something is wrong in my query and 01-Jan-2000 results are returned
Thanks,
Ashish