Hello,
I am running some ETL routines against an Oracle database via SAS ACCESS ODBC, using PROC SQL.
There is a datetime field in the source table that contains some invalid values (8 of then according to the log) and I would like to view these in order to provide feedback to the users and get them fixed.
Code:
proc sql;
create table test2 as
select myDateField as dates
from myTableView
order by dates;
quit;
I see the following log note:
The data value for column DATES (DATES) was truncated or was out of range 8 times when
retrieving that data from the DBMS.
I have tried using the "Put" function, but this also gives an error.
Thansk in advance
Jim