DBMS_PYTHON.DROPPYTHON is used to drop a Python external resource.
Note
The system package was introduced in OceanBase Database V4.4.1.
Syntax
DBMS_PYTHON.DROPPYTHON(IN py_name VARCHAR(65535));
py_name specifies the python_name value specified in the loadpython procedure.
Examples
Execute the following statement to drop a Python external resource:
obclient> CALL DBMS_PYTHON.DROPPYTHON('my_add_python');