Cmdlets for Azure Table Storage

Build 25.0.9434

Remove-Azure Cmdlet

Parameters   Output Objects  

Azure Table Storage データを削除します。

Syntax

Remove-Azure [parameters]

Remarks

Remove-Azure コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてAzure Table Storage データを削除できます。

$conn = Connect-Azure -AccessKey 'myAccessKey' -Account 'myAccountName'
Remove-Azure -Connection $conn -Table "NorthwindProducts" -Id "1"
Where パラメータは主キーを指定するためにも使われます。
Remove-Azure -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-Azure -Connection $conn -Table NorthwindProducts -Where "Industry = 'Floppy Disks'" | Remove-Azure

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434