MAX_DECODER_OBJECT_SIZE
You are looking at an older version of the documentation. The latest version is found here.
You can use this option to control the script size that can be executed in the GUI. The value is expressed as an integer and represents the maximum byte length of the serialized object.
The default value is set to 134217728
(128 MB), and the minumal possible value is 33554432
.
To get the current value for this option, you can use this statement:
SELECT * FROM table(CALL SYSADMIN.getDefaultOptionValue('MAX_DECODER_OBJECT_SIZE')) AS a;;
Examples
1. Setting the maximum size to 32 MB:
CALL SYSADMIN.setDefaultOptionValue('MAX_DECODER_OBJECT_SIZE', '33554432');;
2. Resetting the maximum size to the default value (128 MB):
CALL SYSADMIN.setDefaultOptionValue('MAX_DECODER_OBJECT_SIZE', '');;