Example 1: The following statement sets the CURRENT DEBUG MODE to allow subsequent procedures created by the CREATE PROCEDURE (SQL) statement to be debuggable.
SET CURRENT DEBUG MODE = ALLOW
Example 2: The following statement sets the CURRENT DEBUG MODE to disallow subsequent procedures created by the CREATE PROCEDURE (SQL) statement to be debuggable and to prevent those procedures from being altered to make them debuggable.
SET CURRENT DEBUG MODE = DISABLE
(C) Copyright IBM Corporation 1992, 2006. All Rights Reserved.