Answer Posted / swapna
Definer Rights
--------------
A routine stored in the database by default, is executed
with the definer rights (owner of the routine), depending
on the user who calls it.
For example, table "Test" belongs to schema A. User A
creates a procedure PR_TEST allowing for updates of a
table. User B is granted execute privileges on the
procedure. Now user B cannot access the table as no
privileges have been granted, but can call the procedure to
do the required process logic for updating the table.
Invoker Right
-------------
With Oracle 8i, there is no need for this duplication of
code. A single compiled program unit can be made to use
schema A's objects when invoked by User A and schema B's
objects when invoked by User B.
This way, we have the option of creating a code repository
in one place and sharing it with various production users.
The owner of the routine must grant EXECUTE privilege to
other users.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what is cursor. write example of it. What are the attributes of cursor.
Does truncate require commit?
what is the difference between cluster and non cluster index? : Sql dba
What is the advantage of nosql?
Why having clause is used in sql?
Is the primary key an index?
what are the system privileges that are required by a schema owner (user) to create a trigger on a table?
What is a delimiter in sas?
What is compute?
What is cte sql?
How do I run a query in pl sql developer?
Can you sum a count in sql?
What is the difference between join and natural join?
What do you mean by field in sql?
what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba