Per spostare i record in Oracle, convertendo una stringa in una data:
INSERT INTO test (test_date)
SELECT TO_DATE(test_date, 'YYYYMMDD')
FROM test_date1
Una volta memorizzato in Oracle come data, puoi recuperarlo in qualsiasi formato desideri:
SELECT TO_CHAR(test_date, 'YYYY/MM/DD') as test_date
FROM test;