I always thought that to_date function string and date format should match. Why does the following expression work?
select TO_DATE('20151014','yyyy-mm-dd') from dual;
Is oracle now ignoring special characters before converting a string to a date?
This is in Oracle 11g.
mahen source share