Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

getCloudMssqlCharacterSetList

Prev Next

VPC環境で利用できます。

Cloud DB for MSSQLで使用可能なキャラクターセットリストを照会します。

構文

getCloudMssqlCharacterSetList構文は次の通りです。

./ncloud vmssql getCloudMssqlCharacterSetList \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

オプション

getCloudMssqlCharacterSetListの実行時に指定できるオプションについて説明します。

共通オプション

vmssqlコマンドで共通して使用するオプションについては、Cloud DB for MSSQL (VPC)のオプションを参照してください。

Cloud DB for MSSQL Character Setリストの照会リクエストが成功すると、使用可能なキャラクターセットの名前が返されます。

コマンド

コマンドの例は次の通りです。

./ncloud vmssql getCloudMssqlCharacterSetList \
    --regionCode KR \
    --output json

出力

出力の例は次の通りです。

{
  "getCloudMssqlCharacterSetListResponse": {
    "totalRows": 2,
    "cloudMssqlCharacterSetList": [
      {
        "characterSetName": "Korean_Wansung_CI_AS"
      },
      {
        "characterSetName": "SQL_Latin1_General_CP1_CI_AS"
      }
    ],
    "requestId": "e5f6a7b8-c9d0-1234-efab-567890123456",
    "returnCode": "0",
    "returnMessage": "success"
  }
}