How to fix the Oracle error PCC-02107: You may not specify PARSE = FULL when CODE = CPP?
In this post, you’ll learn more about the Oracle ErrorPCC-02107: You may not specify PARSE = FULL when CODE = CPP with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PCC-02107: You may not specify PARSE = FULL when CODE = CPP
Reason for the Error PCC-02107: You may not specify PARSE = FULL when CODE = CPP
Cause: The PARSE=FULL and CODE=CPP options were both specified on the command line. The PARSE=FULL option invokes the C parser which does not understand any C++ constructs generated by the precompiler with CODE=CPP option.
How to fix the Error PCC-02107: You may not specify PARSE = FULL when CODE = CPP ?
You can fix this error in Oracle by following the below steps
Action: Set the PARSE option to either NONE or PARTIAL if the CODE=CPP option is specified.
Leave Your Comment