What is the use of nocopy parameter in oracle procedure

What is the use of nocopy parameter in oracle procedure

瀏覽:1486
日期:2026-04-21
When a parameter is passed as an IN variable, it is passed by reference. Since it will not change, PL/SQL uses the passed variable in the procedure/function. When variables are passed in OUT or INOUT mode, a new variable is define, and the value is copied...看更多