Remove-Reckon Cmdlet
Deletes Reckon data.
Syntax
Remove-Reckon [parameters]
Remarks
The Remove-Reckon cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Reckon data.
$conn = Connect-Reckon Remove-Reckon -Connection $conn -Table "Customers" -Id "10456255-0015501366"The Where parameter can also be used to specify the primary key:
Remove-Reckon -Connection $conn -Table "exTablePowershell;" -Where "Id = 10456255-0015501366"The primary key can also be passed to the cmdlet along the pipeline:
Select-Reckon -Connection $conn -Table Customers -Where "Name = 'Cook, Brian'" | Remove-Reckon