LucidDbDropJar
From LucidDB Wiki
Syntax
DROP JAR qualified-jar-name [ CASCADE | RESTRICT ]
or (below is SQL/J standard)
CALL sqlj.remove_jar ( 'qualified-jar-name', undeployment-option-number )
See FarragoSQLJDeploymentDescriptors for the effect of any deployment descriptors which are present in the jar.
Example
DROP JAR udf_jar CASCADE;
or
CALL sqlj.remove_jar('udf_jar', 0);