I have a column which is of "DATE" type and I want to run a query on it comparing it with sysdate.

But I am getting following error, Can someone please let me know what I am missing here?

SQL> select distinct file_name as r 
     from table_1 
     where view_day >= TO_DATE(SYSDATE-10, 'YYYY/MM/DD');

ERROR at line 1:
ORA-01858: a non-numeric character was found where a numeric was expected
link|improve this question

51% accept rate
feedback

3 Answers

You shouldn't use to_date on a date, To_date is for casting a varchar to date, not a date.
If you do use the function to_date on a date, then oracle will refer to it as a string according to nls_date_format which may vary in different environments.
As @jonearles said, if you want to remove the time in sysdate then use TRUNC

link|improve this answer
+1 for "do not use to_date on date columns". – a_horse_with_no_name Feb 5 at 8:45
feedback

Error shows that a VIEW_DAY column is varchar so you need to convert DATE to String. Use TO_CHAR or convert VIEW_DAY to date type.

link|improve this answer
Nope. view_date is of DATE type – TopCoder Feb 5 at 6:44
1  
@TopCoder - I've guess! Have a look at - orafaq.com/wiki/ORA-01858 – AVD Feb 5 at 6:46
Thanks! you are right. The default date format for view_date and sysdate in my system were both set to DD-MON-YYYY. Changing the format to same helped! – TopCoder Feb 5 at 6:52
4  
@TopCoder You may want to use TRUNC instead of TO_DATE. – jonearles Feb 5 at 6:58
feedback

USE:

select distinct file_name as r 
from table_1 
where view_day >= TRUNC(SYSTDATE-10)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.