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