-
Notifications
You must be signed in to change notification settings - Fork 356
Specify Oracle user during DML operations #1099
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
You can register a custom |
Ok that's great, but I there is a problem. I mean, it does not work along with
And also, if we register the bean like this:
The generated query will look like the following:
Whereas if I remove
But I cannot remove the |
You are correct, this is a bug. We should |
I think yes, this would be a great improvement. I can take a loot at it. Can you please take a loot at #1047. It will be great to merge it in near future also. Thank you in advance. |
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.The text was updated successfully, but these errors were encountered: