Documentation Index

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

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

getCloudMssqlCharacterSetList

Prev Next

Cloud DB for MSSQL에서 사용할 수 있는 문자셋 목록을 조회합니다.

구문

getCloudMssqlCharacterSetList 구문은 다음과 같습니다.

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

옵션

getCloudMssqlCharacterSetList 실행 시 지정할 수 있는 옵션을 설명합니다.

공통 옵션

vmssql 명령에서 공통으로 사용하는 옵션에 대한 정보는 Cloud DB for MSSQL 옵션을 참조해 주십시오.

예시

Cloud DB for MSSQL Character Set 목록 조회 요청이 성공하면 사용할 수 있는 문자셋의 이름이 반환됩니다.

명령

명령 예시는 다음과 같습니다.

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

출력

출력 예시는 다음과 같습니다.

{
  "getCloudMssqlCharacterSetListResponse": {
    "totalRows": 2,
    "cloudMssqlCharacterSetList": [
      {
        "characterSetName": "Korean_Wansung_CI_AS"
      },
      {
        "characterSetName": "SQL_Latin1_General_CP1_CI_AS"
      }
    ],
    "requestId": "cd6fa0c6-e79b-4b41-a3ef-a39d98dae16c",
    "returnCode": "0",
    "returnMessage": "success"
  }
}