Example: Changing the Protection Mode
The following ALTER METHOD request changes the protection mode for the method named polygon_mbr() from protected to not protected:
ALTER METHOD polygon_mbr() FOR SYSUDTLIB.polygon EXECUTE NOT PROTECTED;
Example: Recompiling a Method Object
The following ALTER METHOD request recompiles the specific method object named SYSUDTLIB.polygon_mbr:
ALTER SPECIFIC METHOD SYSUDTLIB.polygon_mbr COMPILE;