メインコンテンツまでスキップ
バージョン: 26.x

ALTER WORKLOAD GROUP

説明

このステートメントはワークロードグループを変更するために使用されます。

構文

ALTER WORKLOAD GROUP  "<rg_name>"
PROPERTIES (
`<property>`
[ , ... ]
);

パラメータ

1.<property>

<property>フォーマットは<key> = <value>です。<key>の具体的なオプション値はworkload groupを参照してください。

Examples

  1. g1という名前のworkload groupを変更する:

    alter workload group g1
    properties (
    "max_cpu_percent"="20%",
    "max_memory_percent"="40%"
    );