You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the check "plausibleTemporalAfter" the year of birth is cast to a date by concatenating it with "-06-01". The date format which is used is however "YYYYMMDD". This leads to the error java.sql.SQLDataException: ORA-01843: not a valid month.
This is an example: CAST(plausibleTable.BIRTH_DATETIME AS DATE), TO_DATE(CONCAT(plausibleTable.year_of_birth,'-06-01'), 'YYYYMMDD')
An easy fix would be to just remove the "-" in the string.
Unfortunately, I wasn't able to find the file in which the check is defined to make sure the problem is not already solved, and I'm just using an old version.
The text was updated successfully, but these errors were encountered:
In the check "plausibleTemporalAfter" the year of birth is cast to a date by concatenating it with "-06-01". The date format which is used is however "YYYYMMDD". This leads to the error
java.sql.SQLDataException: ORA-01843: not a valid month
.This is an example:
CAST(plausibleTable.BIRTH_DATETIME AS DATE), TO_DATE(CONCAT(plausibleTable.year_of_birth,'-06-01'), 'YYYYMMDD')
An easy fix would be to just remove the "-" in the string.
Unfortunately, I wasn't able to find the file in which the check is defined to make sure the problem is not already solved, and I'm just using an old version.
The text was updated successfully, but these errors were encountered: