Removes a class or JAR file from a database.
REMOVE JAVA { CLASS java-class-name [ , java-class-name ... ] | JAR jar-name [ , jar-name ... ] }
The java-class-name parameter is the name of one or more Java class to be removed. These classes must be installed classes in the current database.
The jar-name is a single-quoted character string value of maximum length 255. Each jar-name must be equal to the jar-name of a retained JAR in the current database. Equality of jar-name is determined by the character string comparison rules of the SQL system.
Removes a class or JAR file from the database. The class or JAR must already be installed.
You must be the owner of the class or JAR file, or have the MANAGE ANY EXTERNAL OBJECT system privilege.
Not in the standard.
This example removes a fictitious Java class named Demo from the current database:
REMOVE JAVA CLASS Demo;
This example removes a fictitious Java JAR named myJar from the current database:
REMOVE JAVA JAR 'myJar';