The SE_ParamSet() function

The SE_ParamSet() function with no arguments returns usage information. Calling SE_ParamSet() with a parameter name in quotation marks and a value sets the parameter to the specified value. The new value is returned. Parameter names are not case-sensitive. Quotation marks are not required for numeric values.

Syntax

SE_ParamSet(name lvarchar, value lvarchar) returns lvarchar
SE_ParamSet() returns lvarchar

Return type

LVARCHAR

Example

execute function SE_ParamSet();
execute function SE_ParamSet('memmode', '0');
execute function SE_ParamSet('MemMode', 1);