Syntax options:
       PARAMETER_CHECK
       NOPARAMETER_CHECK
    Specifies whether or not the SQL module processor compares
    the number of formal parameters declared for a procedure with
    the number of parameters specified in the SQL statement of the
    procedure:
    o  PARAMETER_CHECK (default)
       Checks that parameter counts match and generates an error at
       run time (not compile time) when they do not.
    o  NOPARAMETER_CHECK
       Suspends checking parameters to improve module compilation
       time. Consider using the NOPARAMETER_CHECK qualifier after you
       have debugged your SQL module.
    SQL checks parameter counts by default. To improve module
    compilation time, you must explicitly use the NOPARAMETER_CHECK
    qualifier.