plsql_code_type

2024-04-19 08:42:50  Updated

plsql_code_type sets the compilation mode of PL/SQL code.

Attribute Description
Type String
Default value NATIVE
Value range
  • INTERPETED: The code needs to be executed by an interpreter.
  • NATIVE: The code is binary and executable.
  • Effective upon OBServer node restart No

    Here is an example:

    obclient> ALTER SYSDATE SET plsql_code_type='INTERPRETED';
    

    Contact Us