CLI cookbook: enabling/disabling the MSSQL_EXPAND_VOLUME_BEYOND_63TB parameter

This topic covers procedure to enable and disable the MSSQL_EXPAND_VOLUME__BEYOND_63TB parameter:

Enabling the MSSQL_EXPAND_VOLUME_BEYOND_63TB parameter using CLI

  1. Log in to CLI using sysadmin

  2. On the CLI type the below mentioned commands to enable the parameter:

    Copy
    > system 
    > enableFeatureFlag 
    > set name=MSSQL_EXPAND_VOLUME_BEYOND_63TB 
    > commit
  3. After those commands are committed and executed, the parameter will be enabled.

  4. We can verify the list of enabled parameter using the below mentioned command:

    Copy
    > get enabledFeatures

Disabling the MSSQL_EXPAND_VOLUME_BEYOND_63TB parameter using CLI

  1. Log in to CLI using sysadmin

  2. On the CLI type the below mentioned commands to disable the parameter:

    Copy
    > system 
    > disableFeatureFlag 
    > set name=MSSQL_EXPAND_VOLUME_BEYOND_63TB 
    > commit 
  3. After those commands are committed and executed, the parameter will be disabled.

  4. We can verify the FF is not there in the list of enabled parameter using the below mentioned command:

    Copy
    > get enabledFeatures