Cmdlets for Apache HBase

Build 24.0.8963

Remove-ApacheHBase Cmdlet

Parameters   Output Objects  

Apache HBase データを削除します。

Syntax

Remove-ApacheHBase [parameters]

Remarks

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

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

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.8963