What is the use of nocopy parameter in oracle procedure

What is the use of nocopy parameter in oracle procedure

瀏覽:1248
日期:2025-06-11
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...看更多