Hello, good morning, I have the following problem:
I present access and connection to oracle sql, where I execute a query which applies a date filter, indicating that all records must be greater than 05-15-1987.
It is stated that:
I apply a transformation to the PER_FECNAC field to a CAST date type (PER_FECNAC AS DATE) > β05-15-1987β.
Evidence is attached
In knime as in sql oracle I present the same formula
CAST(PER_FECNAC AS DATE) > β15-05-1987β, where in sql oracle applies the filter correctly, but in knime it doesnβt and it runs an error. Therefore I apply and transform to date in both systems.
From what I see or understand, I must add a sql statement that I donβt know what it is or exists within knime, a configuration that I am omitting, since if it works in oracle sql, it should also work in knime since I present a connection with bases and oracle statements.
Have you considered writing it as 1987-05-15 like it would appear in any SQL system I know? It mit be that Oracle graciously assumes this order. Also you can check the driver version and maybe Google if there might be a thing that this is not supported.