Hello,
SqlAchemy automatically specify the table name in front of columns and thus my query parameters are too long and I get the "(cx_Oracle.DatabaseError) ORA-00972" error on Oracle. For example if my table name is "TABLE_NAME_TOO_LONG" and my columns are "id" and "name" a request will look like this:
SELECT "TABLE_NAME_TOO_LONG".id, "TABLE_NAME_TOO_LONG".name FROM "TABLE_NAME_TOO_LONG" where ...
I could use alias for select request in order to bypass this issue if I understand well (
https://www.tutorialspoint.com/sqlalchemy/sqlalchemy_core_using_aliases.htm).
However for an insert I cannot find any solution.
Is there a way to set an alias to a table name for an insert ? or remove the table name ?
Best regards ;)