So I am trying to insert multiples rows of data from one table to another. I have done this; however, I am having an issue with some of my columns, specifically my date colu
Two options:
1) If you have alter session privilege, change the NLS_DATE_FORMAT before running the SELECT statement as given below:
ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-RR HH24:MI';
2) If you don't have ALTER session privilege then apply the transformation for each date field as given below (the stmnt below shows it for START_POUR)
'TO_DATE(''' || TO_CHAR(START_POUR, 'DD-MON-RR HH24:MI') || ''', ''DD-MON-RR HH24:MI'')'