7.10 SDO_NFE.DELETE_MODEL_WORKSPACE

Format

SDO_NFE.DELETE_MODEL_WORKSPACE(
     model_id       IN NUMBER,
     workspace_name IN VARCHAR2);

Description

Drops a workspace along with its relationship with the specified NFE model.

Parameters

model_id

ID of the NFE model.

workspace_name

Name of the workspace.

Usage Notes

workspace_name must be the name of an existing workspace under the specified NFE model. All branches of the workspace are removed.

The relationship with the model is deleted from xxx_SDO_NFE_MODEL_WORKSPACE views.

Examples

The following example deletes the workspace named PROJECT_V4 from the NFE model with the ID 1

EXECUTE SDO_NFE.DELETE_MODEL_WORKSPACE(1, 'PROJECT_V4');