Showing posts with label What is NOCOPY. Show all posts
Showing posts with label What is NOCOPY. Show all posts

Sunday, 11 February 2018

What is NOCOPY?

By default the IN parameter is passed by reference and the OUT and IN OUT parameters
are passed by value.
NOCOPY : is a compiles hint that can be used with OUT and IN OUT parameter to
request to pass by reference. This improves the performance with OUT and INOUT
parameters.