I always thought that to_date function string and date format should match. Why is the below statement working fine?
select TO_DATE('20151014','yyyy-mm-dd') from dual;
Is oracle now ignoring the special characters before converting string to date?
This is in Oracle 11g.