Dropping MLE Environments

MLE environments that are no longer needed can be dropped using the DROP MLE ENV command.

The following snippet demonstrates a basic example of dropping an MLE module:

DROP MLE ENV myOldEnv;

As with MLE modules, the IF EXISTS clause prevents an error if the named MLE environment does not exist, as shown in the following snippet:

DROP MLE ENV IF EXISTS myOldEnv;