PLW-07203: parameter 'string' may benefit from use of the
NOCOPY compiler hint



PLW-07203: parameter 'string' may benefit from use of the NOCOPY compiler hint..

Answer / guest

Cause: The mode of the specified parameter was IN OUT or
OUT. Use of the NOCOPY compiler hint may speed up calls to
this subprogram.

Action: Change the mode of the parameter to explicitly use
the NOCOPY compiler hint. For example, if your subprogram
declaration is: PROCEDURE proc(p1 IN OUT CLOB); you can
change it to: PROCEDURE proc(p1 IN OUT NOCOPY clob); to get
the benefit of the NOCOPY hint. For member procedures or
functions in object types, you may have to explicitly
declare the SELF parameter as illustrated in the following:
MEMBER PROCEDURE proc(SELF IN OUT NOCOPY MY_TYPE);

Please add more information about this Error

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle Errors Interview Questions

TNS-00314: Protocol Adapter Errors: number,number

1 Answers  


DRG-50304: error in execute()

1 Answers  


ORA-32318: cannot rename a materialized view

1 Answers  


ORA-16079: standby archival not enabled

1 Answers  


TNS-04015: Current instance string is not yet started

1 Answers  






ORA-16639: specified instance inactive or currently unavailable

1 Answers  


ORA-16524: unsupported operation

1 Answers  


PCC-00105: Keyword WORK required here by ANSI

1 Answers  


ORA-24506: invalid attempt to change character set id on env handle

1 Answers  


ORA-12035: could not use materialized view log on "string"."string"

1 Answers  


O2F-00341: An error occurred for which no message is available

1 Answers  


ORA-14083: cannot drop the only partition of a partitioned table

1 Answers  


Categories