onmode, wm, and AUTO_LRU_TUNING arguments: Change LRU tuning status (SQL administration API)

Use the onmode, wm, and AUTO_LRU_TUNING arguments with the admin() or task() function to change the LRU tuning status without updating the onconfig file. .

Syntax


1  EXECUTE FUNCTION
1 admin
1 task
2  (
2  "onmode" , "wm" ,
1 "AUTO_LRU_TUNING=0
1 "AUTO_LRU_TUNING=1
3  " ) ;

Usage

Use the AUTO_LRU_TUNING =1 argument to enable automatic LRU tuning.

Use the AUTO_LRU_TUNING=0 argument to disable automatic LRU tuning .

This function is equivalent to the onmode -wm AUTO_LRU_TUNING command.

Example

The following example enables automatic LRU tuning:
EXECUTE FUNCTION task("onmode","wm","AUTO_LRU_TUNING=1");