Hi everyone,
we are in the process of migrating from MySQL to Oracle in our backend, and I am testing the connection to Oracle.
I stumpled upon a few weird issues when extracting.
Unfortunately I did not find anything on this so far.
Thanks a lot in advance.
BR
Bjoern
we are in the process of migrating from MySQL to Oracle in our backend, and I am testing the connection to Oracle.
I stumpled upon a few weird issues when extracting.
- I used often a ";" at the end of the queries as a delimiter, since I tested the queries in the MySQL Workbench and now Oracle Developper respectively.
With MySQL there was no issue. When using the same query to an Oracle Connection it results in an errorError in source e_rel_D_PROJ: ORA-00933: SQL command not properly ended
I would consider this as a bug. - I work a lot with variables that are set with a groovy script and used in the relational extract to extract data of only certain dates for example.
Here I get problems with dates. With the MySQL Connector there was no issue, that the variable was a string and the SQL correctly showed the dates matching the string.
With Oracle there are two issues.- String Variable does not work. I have to put a TO_DATE() in front of it, which causes a lot of extra tiny work steps to adjust all the relational extracts
- For some reason the dates result in a different format. So far it was always YYYY-MM-DD. Now it results in DD-MM-YY
- String Variable does not work. I have to put a TO_DATE() in front of it, which causes a lot of extra tiny work steps to adjust all the relational extracts
Unfortunately I did not find anything on this so far.
Thanks a lot in advance.
BR
Bjoern