on 2019 Mar 01 11:03 AM
Request clarification before answering.
As you see in the error message, _SYS_REPO has missing privileges for that what you wanna do in the procedure. In the SQL console, you are using a separate user which has the privileges. I guess you have created your procedure with definer rights (in the procedure header). If that is what you wanna do, than _SYS_REPO needs the missing privileges.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your procedure is setup for definer rights therefore it executes as the user who created it - _SYS_REPO. So either you need to grant the necessary access to _SYS_REPO or change the procedure to invoked rights.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
95 | |
11 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.