Closed
Description
We have an Oracle database, and a table, which is owned by TERRABYTE
user. The thing is that the connection to Oracle database is obtained not by the TERRABYTE user, but by another user. Therefore we have to explicitly specify not only the Table we want to insert to, but also the owner, like:
INSERT TERRABYTE.PARKING_PLACE(......
instead of simply doing
INSERT PARKING_PLACE(....
Is there a way to do it in spring-data-jdbc? Seems @Table
does not provide such functionality.