Skip to main content
Skip table of contents

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. Login to CLI using sysadmin 

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

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

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

    CODE
    > get enabledFeatures 
enable_63tb.png

Disabling the MSSQL_EXPAND_VOLUME_BEYOND_63TB parameter using CLI 

  1. Login to CLI using sysadmin 

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

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

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

    CODE
    > get enabledFeatures 
disable_63tb.png

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.