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

ORA-08106: cannot create journal table string.string

1 Answers  


DRG-11863: Bad, Incomplete, Or Unknown Response

1 Answers  


IMP-00019: row rejected due to ORACLE error number

1 Answers  


TNS-00000: Not An Error

1 Answers  


RMAN-06177: restore not done; all files readonly, offline, or already restored

1 Answers  






ORA-13503: Creating SYSAUX tablespace with invalid attributes

1 Answers  


ORA-09881: sstasfre/sstasdel: shmdt error, unable to detach tas read page

1 Answers  


PLS-00638: cannot overload MAP method

1 Answers  


RMAN-12001: could not open channel string

1 Answers  


DRG-12803: invalid text datatype

1 Answers  


ORA-01052: required destination LOG_ARCHIVE_DUPLEX_DEST is not specified

1 Answers  


PCB-00216: OCCURS ASCENDING/DESCENDING clause not allowed for "string"

1 Answers  


Categories