The DROP_AI_MODEL procedure is used to drop an AI model object.
Syntax
PROCEDURE drop_ai_model(
IN name VARCHAR(128));
Parameters
| Parameter | Description | Type | Value range | Nullable |
|---|---|---|---|---|
| name | The name of the AI model object. | VARCHAR(128) | No |
Examples
Drop an AI model object.
CALL DBMS_AI_SERVICE.DROP_AI_MODEL ('my_ai_model_1');