Azureテーブルストレージに既存のデータがいくつかあります.CSVファイルを展開すると、最新の変更が展開されますが、Azureテーブルストレージに存在するデータは上書きされないか、古いデータは削除されません.forの例:私は5列を持っているcsvファイルを展開すると、5行のデータが展開され、3行の古いデータは削除されていません、それは上書きする必要があります。私を助けてください。 - サブスクリプションの詳細:Azureストレージテーブルエントリの削除
$subscriptionName = "Tech Enabled Solutions"
$resourceGroupName = "abc"
$storageAccountName = "defghi"
$location = "North Central US"
$tableName = "TestTable"
# Get the storage key for the storage account
$storageAccountKey = "12345678990"
# Get a storage context
$ctx = New-AzureStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey
$table = Get-AzureStorageTable -Name $tableName -Context $ctx -ErrorAction Ignore
#If the table exists, start deleting its entities.
if ($table -ne $null)
{
$table=Get-AzureStorageTableRowAll -table $table | Remove-AzureStorageTableRow -table $table -Context $ctx
}
エラー:
そのモジュールをインストールするには、スクリプトにこのコマンドを追加します。2017-10-17T13:11:33.6495612Z ## [エラー]には、Get-AzureStorageTableRowAll:用語「取得-AzureStorageTableRowAll 'は、コマンドレット、 関数、スクリプトファイル、または操作可能なプログラムの名前として認識されません。名前のスペルを確認するか、パスが含まれている場合は、パスが正しいことを確認してから、もう一度やり直してください。 D:\ a \ 1 \ s \ DeploymentScripts \ deleteentity.ps1:20 char:11 $ table = Get-AzureStorageTableRowAll -table $ table | Remove-AzureSto ... + + CategoryInfo:ObjectNotFound(GetAzureStorageTableRowAll:String)[]、CommandNotFoundException –