-
Notifications
You must be signed in to change notification settings - Fork 56
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
Oracle GRANT to Directories #142
Comments
This will be a multi-part answer, as I need a few things clarified (I haven't used Oracle DIRECTORY before).
(First, a question for you - are you onboarding an existing system where you've already deployed database objects? If so, are you doing the reverse-engineering steps?) A) For new DIRECTORY objects: Currently, we don't support the DIRECTORY object type. For Oracle, we support: table, view, sp, sequence, function, trigger, synonym, package + package body; along with the staticdata and migration data types. It should be possible to add support for the DIRECTORY object type soon. Once done, then the permission scheme should handle it just as it would for other object types, e.g.
Out of curiosity, have you been able to deploy DIRECTORY so far in your proof-of-concept, given that we don't support /directory as of today? B) For existing directory objects, i.e. all objects in the schema We have an open issue (#3) to apply the permission scheme to existing objects, particularly if we had onboard existing objects. The goal here is two-fold:
I believe this would have the same intended effect of your "select_stmt". Let me know if this fits what you would want. We hope to get #3 out in the next 3 months There was a lot of info in there - feel free to reply in this issue for questions on anything raised above |
Hi, please let us know if you have more questions on this. I will leave the ticket open for now, as we can use this to track the feature to add DIRECTORY support to Obevo |
…types of object setups in future
@jdonnerstag FYI - development on this issue is in progress |
Hi @jdonnerstag , this functionality is now available for you to try out. You can obtain the command-line binary here: https://www.dropbox.com/sh/xrfe6bp954do1pw/AAAi2ogHzTG2gklf6eipAph2a?dl=0 For info on how to use it, see the SNAPSHOT documentation: https://shantstepanian.github.io/obevo/oracle-notes.html. We hope to release later this month. Please let us know any feedback that you have. |
We grant privs to Oracle Directory objects, e.g.
'GRANT READ ON DIRECTORY '||R.DIRECTORY_NAME||' TO ' || v_owner;
How to do that in Obevo?
It seems to me there are many more GRANTS than just users and groups currently supported by Obevo. I like the idea of all GRANTS being in one place.
/Juergen
The text was updated successfully, but these errors were encountered: