Remove-ApacheHBase Cmdlet
Deletes Apache HBase data.
Syntax
Remove-ApacheHBase [parameters]
Remarks
The Remove-ApacheHBase cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Apache HBase data.
$conn = Connect-ApacheHBase -Server '127.0.0.1' -Port 8080 Remove-ApacheHBase -Connection $conn -Table "Account" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-ApacheHBase -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-ApacheHBase -Connection $conn -Table Account -Where "Industry = 'Floppy Disks'" | Remove-ApacheHBase