Skip to main content
Skip table of contents

MAX_DECODER_OBJECT_SIZE

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:

SQL
SELECT * FROM table(CALL SYSADMIN.getDefaultOptionValue('MAX_DECODER_OBJECT_SIZE')) AS a;;

Examples

1. Setting the maximum size to 32 MB:

SQL
CALL SYSADMIN.setDefaultOptionValue('MAX_DECODER_OBJECT_SIZE', '33554432');;

2. Resetting the maximum size to the default value (128 MB):

SQL
CALL SYSADMIN.setDefaultOptionValue('MAX_DECODER_OBJECT_SIZE', '');;
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.