We have two servers: development and production.
I run this sql:
select DATE_LAST_USED
from inventory
where item_code='125-325'
and DATE_LAST_USED <=TO_DATE('07081997','mmddyyyy') ;
on development i have: no row selected,
and on production I have:
DATE_LAST
---------
02-AUG-04
What could be a reason?
Thanks.
I run this sql:
select DATE_LAST_USED
from inventory
where item_code='125-325'
and DATE_LAST_USED <=TO_DATE('07081997','mmddyyyy') ;
on development i have: no row selected,
and on production I have:
DATE_LAST
---------
02-AUG-04
What could be a reason?
Thanks.