0

Is there a way to use the Azure CLI 2 to turn on TDE on an existing Azure SQL Database? If yes, would you provide an example.

Thank you,

4

2 回答 2

0

幸运的是 az cli 是开源的,因此我们只需查找命令即可。

不幸的是,它似乎尚不受支持(截至 2017 年 4 月 26 日)。代码在那里,但被注释掉了。

来源:sql/commands.py#L59

# TDE will not be included in the first batch of GA commands

于 2017-04-26T17:23:47.943 回答
0

您可以使用该az sql db tde set命令启用/禁用 TDE。

az sql db tde set --status {Disabled, Enabled}
                  [--database]
                  [--ids]
                  [--resource-group]
                  [--server]
                  [--subscription]

例如,az sql db set --resource-group mygroup --server myserver --database mydb --status Enabled.

于 2019-08-28T20:46:51.897 回答