|
|
|
A m Z o n e
The secret of FOR UPDATE OF clause
We specify the column names that would be updated in a cursor with the "FOR UPDATE OF" clause. Does this mean that Oracle carries out column level locking, or is there some other process triggered for the mentioned column(s)?
cursor cr_emp is select empno, ename, job, sal from emp where deptno = 'SOFTWARE' for update of sal; -- what is the importance of putting column name over here?
Press the Back button of you Browser to go to previous page
Home