HeatWave Release Notes
A model can be deleted by the owning user or users that have
been granted the required privileges on the
MODEL_CATALOG
table.
To delete a model from the model catalog, issue a query similar to the following:
mysql> DELETE FROM ML_SCHEMA_user1.MODEL_CATALOG WHERE model_id = 3;
where:
ML_SCHEMA_
is the fully qualified name of theuser1
.MODEL_CATALOGMODEL_CATALOG
table. The schema is named for the user that created the model.model_id = 3
is the ID of the model you want to delete.